/* Apply Inter font family globally */
body {
    font-family: 'Inter', sans-serif;
}

/* Custom hover effect for buttons */
.btn-hover-effect:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Icon styling for sections */
.icon-box {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 64px; /* w-16 */
    height: 64px; /* h-16 */
    border-radius: 9999px; /* rounded-full */
    background-color: #E0F2FE; /* blue-50 */
    color: #2A4365; /* primary blue */
    margin-bottom: 1rem; /* mb-4 */
    font-size: 2rem; /* text-3xl */
    transition: transform 0.3s ease-in-out;
}

.icon-box:hover {
    transform: scale(1.1);
}

/* Base Fade In from Bottom Animation */
@keyframes fadeInFromBottom {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInFromBottom 1.5s ease-out forwards;
    opacity: 0; /* Start invisible */
}

/* New: Fade In from Left Animation */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 1.5s ease-out forwards;
    opacity: 0; /* Start invisible */
}

/* New: Fade In from Right Animation */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-right {
    animation: fadeInRight 1.5s ease-out forwards;
    opacity: 0; /* Start invisible */
}

/* New: Zoom In Animation */
@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animate-zoom-in {
    animation: zoomIn 1.5s ease-out forwards;
    opacity: 0; /* Start invisible */
}


/* Animation Delays */
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }
.delay-600 { animation-delay: 0.6s; }
.delay-700 { animation-delay: 0.7s; }
.delay-800 { animation-delay: 0.8s; }
.delay-900 { animation-delay: 0.9s; }
.delay-1000 { animation-delay: 1.0s; }
.delay-1100 { animation-delay: 1.1s; }
.delay-1200 { animation-delay: 1.2s; }


/* Styles for Sign Up / Login Page */
.form-container {
    max-width: 480px;
    margin: auto;
    background-color: #fff;
    padding: 2.5rem; /* p-10 */
    border-radius: 0.75rem; /* rounded-xl */
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-xl */
    transition: all 0.5s ease-in-out;
}
.tab-button {
    padding: 0.75rem 1.5rem; /* px-6 py-3 */
    font-weight: 600; /* font-semibold */
    border-radius: 9999px; /* rounded-full */
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}
.tab-button.active {
    background-color: #2A4365; /* primary blue */
    color: white;
}
.tab-button:not(.active):hover {
    background-color: #E2E8F0; /* gray-200 */
}
.input-field {
    width: 100%;
    padding: 0.75rem 1rem; /* px-4 py-3 */
    border: 1px solid #CBD5E0; /* gray-300 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    transition: border-color 0.2s, box-shadow 0.2s;
}
.input-field:focus {
    outline: none;
    border-color: #6366F1; /* indigo-500 */
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3); /* ring-indigo-500/30 */
}


/* Custom CSS for the animated pop-up button */
        @keyframes pulse-float {
            0% {
                transform: translateY(0) scale(1);
                box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7);
            }
            50% {
                transform: translateY(-5px) scale(1.02);
                box-shadow: 0 0 0 10px rgba(29, 78, 216, 0);
            }
            100% {
                transform: translateY(0) scale(1);
                box-shadow: 0 0 0 0 rgba(29, 78, 216, 0.7);
            }
        }

        .animated-button {
            animation: pulse-float 2s infinite ease-in-out;
            transition: all 0.3s ease;
        }

        .animated-button:hover {
            transform: scale(1.05);
            animation-play-state: paused;
        }