/* Estilos específicos para a página de recuperação de senha */
.recover-password-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #4D62CB 0%, #6675E6 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    z-index: 9999;
}

.recovery-container {
    max-width: 500px;
    width: 100%;
}

.recovery-card {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.recovery-header {
    background: linear-gradient(135deg, #4D62CB 0%, #6675E6 100%);
    color: #ffffff;
    padding: 2rem;
    text-align: center;
}

.recovery-header img {
    max-width: 150px;
    margin-bottom: 1rem;
}

.recovery-body {
    padding: 2rem;
}

.recovery-body .form-label,
.recovery-body label.form-label {
    font-weight: 500;
    color: #323232;
    margin-bottom: 0.5rem;
}

.recovery-body .form-control {
    border: 1px solid #E6E6E6;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
}

.recovery-body .form-control:focus {
    border-color: #007BFF;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn-recovery {
    background: linear-gradient(135deg, #4D62CB 0%, #6675E6 100%);
    border: none;
    color: #ffffff;
    padding: 0.875rem 1.5rem;
    font-weight: 600;
    border-radius: 0.5rem;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-recovery:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.links-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #E6E6E6;
}

.links-footer a {
    color: #007BFF;
    text-decoration: none;
    font-weight: 500;
}

.links-footer a:hover {
    text-decoration: underline;
}

.g-recaptcha {
    margin: 1.5rem 0;
    display: flex;
    justify-content: center;
}

