/**
 * Claim Profile Page Styles
 *
 * @package SICA_Theme
 */

/* Form Input Focus States */
.claim-profile-form input:focus,
.claim-profile-form select:focus,
.claim-profile-form textarea:focus {
    outline: none;
    border-color: #fbaf3f !important;
    box-shadow: 0 0 0 3px rgba(251, 175, 63, 0.1) !important;
}

/* Form Response Messages */
.claim-profile-form .form-response {
    display: none;
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.claim-profile-form .form-response.success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #10b981;
}

.claim-profile-form .form-response.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #ef4444;
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .claim-form-section > div {
        padding: 30px 20px !important;
    }

    .claim-profile-form .form-row {
        grid-template-columns: 1fr !important;
    }

    .claim-form-section h2 {
        font-size: 1.5rem !important;
    }

    .claim-profile-form h3 {
        font-size: 1rem !important;
    }
}
