* {
    font-family: "Plus Jakarta Sans", sans-serif;
}

/* Animated background blobs */
.bg-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    opacity: 0.75;
    animation: drift 12s ease-in-out infinite alternate;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(30px, -20px) scale(1.05);
    }
}

/* Card entrance */
.card-enter {
    animation: cardIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
    @apply shadow-2xl;
}

@keyframes cardIn {
    from {
        opacity: 0;
        transform: translateY(28px) scale(0.97);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Left-side text entrance */
.left-enter {
    animation: leftIn 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

@keyframes leftIn {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Input focus glow */
.input-field {
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}

.input-field:focus {
    outline: none;
    border-color: #3b9ede;
    box-shadow: 0 0 0 3px rgba(59, 158, 222, 0.18);
}

/* Button hover */
.btn-signin {
    transition:
        background-color 0.2s,
        transform 0.15s,
        box-shadow 0.2s;
}

.btn-signin:hover {
    background-color: #1a7fc4;
    box-shadow: 0 6px 20px rgba(41, 128, 185, 0.38);
    transform: translateY(-1px);
}

.btn-signin:active {
    transform: translateY(0);
}

/* Social buttons */
.btn-social {
    transition:
        background-color 0.18s,
        box-shadow 0.18s,
        transform 0.15s;
}

.btn-social:hover {
    background-color: #f1f5f9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}
