@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Animation for cards */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Custom underline effect */
.underline-effect {
    position: relative;
    display: inline-block;
}

.underline-effect::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #0070c0;
    transition: width 0.3s ease;
}

.underline-effect:hover::after {
    width: 100%;
}

/* Section spacing */
section {
    scroll-margin-top: 100px;
}
/* Form styles */
input:focus, textarea:focus, select:focus {
    box-shadow: 0 0 0 3px rgba(0, 112, 192, 0.2);
}

input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #0070c0;
    border-radius: 4px;
    outline: none;
    cursor: pointer;
    position: relative;
    background-color: transparent;
}

input[type="checkbox"]:checked {
    background-color: #0070c0;
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 1px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}
select option {
    color: #000;
    background-color: #fff;
}

/* Password strength meter */
.password-strength-meter {
    height: 4px;
    width: 100%;
    background-color: #e5e7eb;
    margin-top: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.password-strength-meter-fill {
    height: 100%;
    width: 0;
    transition: width 0.3s ease, background-color 0.3s ease;
}

/* Input error state */
.input-error {
    border-color: #ef4444 !important;
}

.input-error:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2) !important;
}
/* Custom gold color */
.bg-gold-500 {
    background-color: #D4AF37;
}

.hover\:bg-gold-600:hover {
    background-color: #B89520;
}

.text-gold-500 {
    color: #D4AF37;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
}