/* --- MODERN FORGOT PASSWORD STYLING --- */

/* 1. Center the entire Forgot Password area */
.am-page-sendpass .am-form, 
#sendpass {
    max-width: 400px !important;
    margin: 40px auto !important;
    text-align: center !important;
    background: transparent !important;
    border: none !important;
}

/* 2. Style the "Lost password?" Heading */
.am-page-sendpass h1, 
.am-page-sendpass .am-form-header {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #1a1a1b !important;
    margin-bottom: 10px !important;
}

/* 3. Make instructions easier to read */
.am-page-sendpass p, 
.am-page-sendpass .am-form-text {
    font-size: 14px !important;
    color: #5f6368 !important;
    line-height: 1.6 !important;
    margin-bottom: 25px !important;
    text-align: center !important;
}

/* 4. UPDATED: Input Field with Bluish Border and Extra Padding */
.am-page-sendpass input[type="text"], 
.am-page-sendpass input[name="login"] {
    width: 100% !important;
    /* Extra padding added here */
    padding: 16px 20px !important; 
    font-size: 16px !important;
    /* Quite bluish border added here */
    border: 2px solid #3b82f6 !important; 
    border-radius: 10px !important;
    background-color: #ffffff !important;
    transition: all 0.2s ease-in-out !important;
    box-sizing: border-box !important;
    margin-bottom: 25px !important;
    display: block !important;
}

/* Enhanced glow when clicking into the input box */
.am-page-sendpass input[type="text"]:focus {
    outline: none !important;
    border-color: #1d4ed8 !important;
    box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.2) !important;
}

/* 5. Hide ALL messy labels and extra text around the input */
.am-page-sendpass .am-element-title,
.am-page-sendpass label,
.am-page-sendpass .am-element-title + br {
    display: none !important;
}

/* 6. BUTTONS: Side-by-Side Flex Layout */
.am-page-sendpass .am-form-buttons, 
.am-page-sendpass .buttons {
    display: flex !important;
    gap: 12px !important;
    justify-content: center !important;
}

/* 7. Reset Password Button (Solid Blue) */
.am-page-sendpass input[type="submit"] {
    flex: 2 !important;
    background: #0062cc !important;
    color: white !important;
    padding: 14px 0 !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    cursor: pointer !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
    transition: background 0.2s !important;
}

.am-page-sendpass input[type="submit"]:hover {
    background: #004a9b !important;
}

/* 8. Log In Button (Outline style) */
.am-page-sendpass .am-form-buttons a, 
.am-page-sendpass a.button {
    flex: 1 !important;
    background: #ffffff !important;
    color: #0062cc !important;
    border: 1px solid #0062cc !important;
    padding: 14px 0 !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    text-align: center !important;
    transition: background 0.2s !important;
}

/* 9. Bottom "Create Account" link */
.am-page-sendpass .am-login-signup-link {
    margin-top: 30px !important;
    font-size: 14px !important;
}


