body {
    background: #f7f7f7;
    font-family: 'Nunito', sans-serif;
    
}

.login-container {
    max-width: 400px;
    margin: 80px auto;
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.login-container h2 {
    text-align: center;
    margin-bottom: 30px;
    color: #333;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 6px;
    display: block;
}

.form-group input[type="email"],
.form-group input[type="password"] {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.form-group input:focus {
    border-color: #4a90e2;
    outline: none;
}

.form-check {
    display: flex;
    align-items: center;
}

.form-check input {
    margin-right: 8px;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    border: none;
    background-color:var(--primary-blue);
    color: #fff;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: black;
}

.forgot-password {
    text-align: right;
    margin-top: 10px;
}

.forgot-password a {
    color:var(--primary-blue) ;
    text-decoration: none;
    font-size: 14px;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.invalid-feedback {
    font-size: 13px;
    color: red;
    margin-top: 5px;
}
input, button, select, optgroup, textarea{
    background-color: #fff;
}