/* Formulários das páginas de autenticação (esqueci senha / redefinir senha) */
.auth-card .auth-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.auth-card .form-group {
    position: relative;
    display: block;
    margin-bottom: 0;
}

.auth-card .form-input {
    width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1rem 0.9rem 2.75rem !important;
    min-height: auto !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    transition: all 0.25s ease;
}

.auth-card .form-input:focus {
    outline: none;
    border-color: #22C55E !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

.auth-card .form-input::placeholder {
    color: #6b7280;
}

.auth-card .input-icon {
    position: absolute;
    left: 0.9rem;
    top: 50%;
    transform: translateY(-50%);
    color: #6b7280;
    font-size: 0.95rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
    pointer-events: none;
    line-height: 1;
}

.auth-card .form-group:focus-within .input-icon {
    color: #22C55E;
}

.auth-card .input-icon i {
    pointer-events: none;
    font-size: 1rem;
    line-height: 1;
}

.auth-card .submit-btn {
    width: 100%;
    border: none;
    border-radius: 14px;
    padding: 0.9rem 1rem;
    background: linear-gradient(135deg, #22C55E, #16A34A);
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 0.25rem;
}

.auth-card .submit-btn:hover {
    filter: brightness(1.05);
}
