/* Validation styles */
.form-group {
    position: relative;
}

.auth-cart {
    display: none;
}

.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.input-success {
    border-color: #10b981 !important;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}

.error-message {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    background: #fef2f2;
    color: #b91c1c;
    font-size: 13px;
    padding: 6px 10px;
    border: 1px solid #fecaca;
    border-radius: 4px;
    z-index: 10;
    cursor: pointer;
    /* white-space: nowrap; */
}
/* Mobile Responsiveness */
@media (max-width: 480px) {
    .auth-card {
        padding: 32px 5px;
    }
    
    .service-title {
        font-size: 24px;
    }
}