
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('https://images.unsplash.com/photo-1497215728101-856f4ea42174?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.login-container {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1486312338219-ce68d2c6f44d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #FF6584;
    margin: 10px auto 0;
    border-radius: 2px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInCard {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

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

@keyframes fadeOutCard {
    to {
        opacity: 0;
        transform: scale(0.92) translateY(10px);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 1s ease-out;
}

.animate-fadeInCard {
    animation: fadeInCard 0.45s ease both;
}

.card-exit {
    animation: fadeOutCard 0.3s ease forwards;
}