/* Login Container Styles */
.login-container {
    background-color: white;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 28rem;
}

/* Login Button Styles */
.login-button {
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 0.5rem 1rem;
    border: 1px solid transparent;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: white;
    background-color: #cfa467;
    transition: background-color 0.3s ease;
}

.login-button:hover {
    background-color: #b88d4f;
}

/* Login Title Styles */
.login-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #1f2937;
}

/* Password Toggle Button Styles */
#togglePassword {
    transition: color 0.3s ease;
}

#togglePassword:hover {
    color: #cfa467;
}

.input-container {
    position: relative;
}
