﻿.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.loading-screen {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: white;
}
.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

.login-logo {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* límite superior opcional acorde a tu logo original */
    width: clamp(140px, 40vw, 275px);
}