/* ---------- PASSWORD RESET FORM ---------- */
#simpleContent {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 30px auto;
    width: 100%;
}

#password_reset {
    background: rgba(0, 0, 0, 0.2); /* subtle transparent box */
    padding: 30px 20px;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    border: 1px solid rgba(207, 228, 89, 0.1); /* subtle green outline */
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#password_reset h2 {
    color: #cfe459;
    text-align: center;
    font-size: 22px;
    margin-bottom: 20px;
}

/* Inputs */
#password_reset input {
    width: 100%;
    padding: 12px 15px;
    border-radius: 6px;
    border: 1px solid #555;
    background: rgba(255,255,255,0.05);
    color: #fff;
    font-size: 14px;
    transition: all 0.2s ease;
}

#password_reset input:focus {
    border-color: #cfe459;
    background: rgba(255,255,255,0.1);
    outline: none;
    box-shadow: 0 0 6px rgba(207,228,89,0.3);
}

/* Labels */
#password_reset label {
    font-size: 12px; /* smaller text to match signup form */
    color: #ccc;
    display: block;
}


/* Button */
#password_reset button {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    border-radius: 6px;
    border: none;
    background: #cfe459;
    color: #000;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s ease;
}

#password_reset button:hover {
    background: #a4bc39;
    color: #fff;
}

/* Messages */
#error_message, #success_message {
    width: 100%;
    max-width: 400px;
    text-align: center;
    font-size: 14px;
    margin-bottom: 12px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    #password_reset {
        width: 90%;
        padding: 25px 15px;
    }
    #password_reset h2 { font-size: 20px; }
    #password_reset button { font-size: 15px; padding: 12px; }
}

@media screen and (max-width: 480px) {
    #password_reset {
        padding: 20px 10px;
    }
    #password_reset button { font-size: 14px; padding: 10px; }
}