.forgot-password-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('../images/plano de fundo.png');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}
.forgot-password-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 16px 0 rgba(0,0,0,0.08);
    padding: 2rem 1.6rem 1.6rem 1.6rem;
    max-width: 360px;
    width: 100%;
    text-align: center;
}
.forgot-password-card h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #E11923;
    font-weight: 700;
}
.forgot-password-card p {
    color: #444;
    margin-bottom: 1.5rem;
}
.form-group {
    margin-bottom: 1.2rem;
    text-align: left;
}
.form-group label {
    display: block;
    margin-bottom: 0.3rem;
    color: #222;
    font-weight: 500;
}
.form-group input[type="email"] {
    width: 100%;
    padding: 0.7rem 0.9rem;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    background: #f9fafb;
    color: #222;
    transition: border 0.2s;
    box-sizing: border-box;
}
.form-group input[type="email"]:focus {
    border-color: #E11923;
    outline: none;
}
.btn-primary {
    background: #E11923;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 0.7rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
    width: 100%;
}
.btn-primary:hover {
    background: #b9151c;
}
.alert {
    background: #e6f7e6;
    color: #1a7f37;
    border-radius: 6px;
    padding: 0.7rem 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.error {
    color: #E11923;
    font-size: 0.95rem;
    margin-top: 0.2rem;
    display: block;
}
.back-link {
    display: inline-block;
    margin-top: 1.2rem;
    color: #E11923;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
}
.back-link:hover {
    text-decoration: underline;
}
