.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dadada;
    padding-top: 80px;
}

/* .container {
    max-width: 1200px;
} */

.login-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    width: 100%;
    max-width: 400px;
}

.login-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    border: 2px solid #ddd;
    padding: 0.75rem;
    border-radius: 8px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
}

.btn-login {
    width: 100%;
    padding: 0.75rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

a.btn-login,
a.button {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    color: white;
}

a.btn-login:hover,
a.btn-login:focus,
a.btn-login:visited,
a.button:hover,
a.button:focus,
a.button:visited {
    color: white;
    text-decoration: none;
}

.btn-login:hover {
    background-color: rgb(140, 73, 208);
}

.forgot-password {
    display: block;
    text-align: right;
    color: #666;
    margin-top: 0.5rem;
}

.register-link {
    text-align: center;
    margin-top: 1rem;
    color: #666;
}

.register-link a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

/* .register-link a:hover {
    text-decoration: underline;
} */

.button {
    background-color: rebeccapurple;
    color: white;
    border: none;
}

.form-group {
    position: relative;
}

#togglePassword {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}