
.authentication-inner {
    animation: fadeInUp 0.8s ease-out;
}

.app-brand-logo {
    animation: floatLogo 3s ease-in-out infinite;
}

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

.btn-info:hover {
    animation: pulseButton 1.5s infinite;
}

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

.form-control:focus {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.alert {
    animation: fadeInUp 0.5s ease-out;
}

.floating-image {
    animation: float 3s ease-in-out infinite;
    max-width: 100%;
    height: auto;
}

.content-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.welcome-title {
    animation: fadeInBottom 0.8s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInBottom {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatLogo {
    0%,
    100% {
        transform: translateY(-5);
    }
    50% {
        transform: translateY(5px);
    }
}

@keyframes pulseButton {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.4);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(13, 202, 240, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(13, 202, 240, 0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}


@media (max-width: 768px) {
    .content-wrapper {
        align-items: center;
        text-align: center;
        margin-top: 2rem;
    }

      .floating-image {
      width: 40%;
    }
}
