/* Login.css - Themed for Pet Classroom */

.login-section {
    padding: 5rem 0;
    max-width: 500px;
    margin: 0 auto;
}

.login-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    text-align: center;
}

.login-card h2 {
    font-family: 'Quicksand', sans-serif;
    color: #4a4a4a;
    margin-bottom: 1rem;
    font-size: 2rem;
}

.login-card h2 span { 
    color: #ffb347; 
}

.login-card p {
    color: #7a7a7a;
    margin-bottom: 2rem;
    font-family: 'Varela Round', sans-serif;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #666;
    font-size: 0.9rem;
}

.login-card input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 1rem;
    transition: 0.3s;
    box-sizing: border-box;
}

.login-card input:focus {
    outline: none;
    border-color: #ffb347;
    background: #fffdf5;
}

.btn-login {
    width: 100%;
    background: #ffb347;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
    margin-top: 1rem;
}

.btn-login:hover {
    background: #ff9d1c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 179, 71, 0.3);
}

.login-footer {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #888;
}

.login-footer a {
    color: #ffb347;
    text-decoration: none;
    font-weight: 700;
}

.login-page-footer {
    margin-top: 3rem; 
    text-align: center; 
    padding: 2rem; 
    color: #aaa; 
    font-size: 0.85rem;
}

/* --- LOGIN-SPECIFIC SELECTION MODAL --- */

.selection-card {
    background: white; 
    padding: 2.5rem; 
    border-radius: 24px;
    width: 90%; 
    max-width: 400px; 
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.modal-title {
    color: #ffb347; 
    font-family: 'Quicksand', sans-serif;
    font-weight: 700; 
    margin-bottom: 0.5rem;
}

.pet-option-btn {
    display: block; 
    width: 100%; 
    padding: 1rem; 
    margin: 10px 0;
    border: 2px solid #f0f0f0; 
    border-radius: 50px;
    background: white; 
    font-family: 'Quicksand', sans-serif;
    font-weight: 700; 
    color: #4A4A4A; 
    cursor: pointer;
    transition: 0.3s;
}

.pet-option-btn:hover {
    border-color: #ffb347; 
    background: #fffdf5; 
    color: #ffb347;
    transform: scale(1.02);
}

.cancel-link {
    margin-top: 1rem; 
    background: none; 
    border: none;
    color: #aaa; 
    text-decoration: underline; 
    cursor: pointer;
}


/* Add this to the existing Login.css */

.forgot-link {
    color: #aaa;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 400;
    transition: 0.3s;
}

.forgot-link:hover {
    color: #ffb347;
    text-decoration: underline;
}

/* Ensure reset input matches card style */
#resetEmail:focus {
    outline: none;
    border-color: #ffb347 !important;
    background: #fffdf5;
}