﻿/* General reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, orange, white);
    /* background: linear-gradient(135deg, #6a11cb, #2575fc);*/
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: white;
    border-radius: 15px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    width: 350px;
    padding: 30px;
    text-align: center;
}

    .container h2 {
        color: #333;
        font-size: 24px;
        margin-bottom: 20px;
        font-weight: 600;
    }

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

    .form-group label {
        display: block;
        color: #555;
        font-size: 14px;
        margin-bottom: 5px;
    }

    .form-group input {
        width: 100%;
        padding: 10px;
        border: 1px solid orange;
        border-radius: 8px;
        font-size: 14px;
        outline: none;
        transition: 0.3s ease;
    }

        .form-group input:focus {
            border-color: royalblue;
            box-shadow: 0px 0px 5px rgba(106, 17, 203, 0.3);
        }

.form-check {
    text-align: left;
    margin-bottom: 20px;
}

    .form-check input {
        margin-right: 10px;
    }

    .form-check label {
        font-size: 14px;
        color: #555;
    }

.btn {
    width: 100%;
    padding: 10px;
    background: orange;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

    .btn:hover {
        background: linear-gradient(135deg, orange, white);
    }

.forgot-password {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: orange;
    text-decoration: none;
    transition: 0.3s ease;
}

    .forgot-password:hover {
        background: orange;
        color:white;
    }
