/* Ensure Font Awesome is used for all FA icon classes (overrides PrimeIcons etc.) */
.fas, .far, .fab {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900;
}
.far { font-weight: 400 !important; }
.fab { font-family: "Font Awesome 6 Brands" !important; font-weight: 400 !important; }

/* Responsive Design Rules */

/* Small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .auth-card {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
    
    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Medium devices (tablets, 768px and down) */
@media (max-width: 768px) {
    .auth-container {
        padding: 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

    .auth-title {
        font-size: 1.5rem;
    }

    .form-input {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

/* Large devices (desktops, 992px and down) */
@media (max-width: 992px) {
    /* Add any specific desktop responsive rules here */
}

@media (max-width: 480px) {
    .auth-card {
        padding: 1rem;
    }

    .auth-title {
        font-size: 1.25rem;
    }
} 