body {
    background: #f6fff9;
    font-family: 'Roboto', Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}
.forgot-container {
    background: #fff;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
    border-radius: 18px;
    box-shadow: 2px 2px 25px #3333332e;
    width: 100%;
    max-width: 410px;
    min-width: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.forgot-header {
    text-align: center;
    margin-bottom: 0.5rem;
}
.forgot-header h2 {
    margin: 0 0 0.5rem 0;
    font-weight: 700;
    color: #27ae60;
    font-size: 2.1rem;
    letter-spacing: 1px;
}
.forgot-header p {
    color: #333;
    font-size: 1.08rem;
    margin: 0;
}
.forgot-form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.forgot-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.forgot-group label {
    color: #333;
    font-size: 1.05rem;
    font-weight: 500;
}
.forgot-group input[type="email"] {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid #d1f5e0;
    border-radius: 7px;
    font-size: 1.08rem;
    background: #fafffc;
    transition: border 0.2s, box-shadow 0.2s, background 0.3s, color 0.3s;
    color: #333;
}
.forgot-group input[type="email"]:focus {
    border-color: #2ecc40;
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 2px #43ea7c33;
    color: #222;
}
.forgot-form button {
    width: 100%;
    padding: 0.95rem;
    background: linear-gradient(90deg, #43ea7c 0%, #27ae60 100%);
    color: #fff;
    border: none;
    border-radius: 7px;
    font-size: 1.18rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.35s, color 0.35s, box-shadow 0.2s, border 0.3s;
    box-shadow: 0 2px 8px rgba(67, 234, 124, 0.10);
    margin-top: 0.2rem;
}
.forgot-form button:hover {
    background: #fff;
    color: #27ae60;
    border: 2px solid #27ae60;
    box-shadow: 0 4px 16px rgba(67, 234, 124, 0.18);
}
.forgot-footer {
    text-align: center;
    margin-top: 1.3rem;
    color: #333;
    font-size: 1rem;
}
.forgot-footer a {
    color: #27ae60;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.forgot-footer a:hover {
    color: #219150;
}
@media (max-width: 600px) {
    .forgot-container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
        border-radius: 12px;
        box-shadow: 0 2px 12px rgba(67, 234, 124, 0.13);
    }
    .forgot-header h2 {
        font-size: 1.3rem;
    }
    .forgot-header p {
        font-size: 0.95rem;
    }
    .forgot-form button {
        font-size: 1rem;
        padding: 0.8rem;
    }
    .forgot-group label {
        font-size: 0.97rem;
    }
    .forgot-footer {
        font-size: 0.92rem;
    }
}
@media (max-width: 400px) {
    .forgot-container {
        padding: 0.7rem 0.2rem 0.7rem 0.2rem;
        border-radius: 8px;
    }
    .forgot-header h2 {
        font-size: 1.05rem;
    }
}
