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

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.card-hover {
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-input {
    transition: all 0.3s ease;
    border: 2px solid #e2e8f0;
    width: 100%;
    padding: 12px 16px;
    border-radius: 8px;
    outline: none;
}

.form-input:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.loading-spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid #667eea;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
    display: inline-block;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.success-checkmark {
    color: #10b981;
    font-size: 24px;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    transform: scale(0);
    animation: ripple 0.6s linear;
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .md\:flex {
        flex-direction: column;
    }
    
    .md\:w-1\/2 {
        width: 100% !important;
    }
    
    .text-4xl {
        font-size: 2rem;
    }
    
    .text-xl {
        font-size: 1.1rem;
    }
}

/* Custom utility classes */
.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.bg-opacity-20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.transform {
    transform: translate(0, 0);
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.transition-all {
    transition: all 0.3s ease;
}

.duration-300 {
    transition-duration: 300ms;
}

.focus\:ring-4:focus {
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.focus\:ring-purple-300:focus {
    --tw-ring-color: rgba(102, 126, 234, 0.3);
}

.form-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #d1d5db;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    background-color: white;
    cursor: pointer;
}

.form-radio:checked {
    border-color: #8b5cf6;
    background-color: #8b5cf6;
    background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

.form-radio:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.logo-img {
    max-width: 700px;
    height: auto;
}

