﻿/* Contenedor principal centrado */
.login-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    max-width: 500px;
    margin: 0 auto;
}

/* Banner con fondo translúcido y animación lateral */
.moving-banner {
    width: 100%;
    padding: 5px 5px;
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.2); /* Transparencia */
    border-radius: 12px;
    /*backdrop-filter: blur(56px);*/
    color: #fff;
    text-align: center;
    animation: sideToSide 6s ease-in-out infinite alternate;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    background-color: #125169; /* Fondo oscuro para resaltar */
}

    /* Títulos */
    .moving-banner h1 {
        font-size: 14px;
        margin-bottom: 10px;
    }

    .moving-banner p {
        font-size: 12px;
        margin: 0;
        color: white; /* Texto blanco */
      
        padding: 3px 8px; /* Espaciado interno */
        background-color: #125169; /* Fondo oscuro para resaltar */
        border-radius: 4px; /* Bordes redondeados (opcional) */
    }

/* Formulario */
.login-form {
    width: 100%;
}

.asp-login {
    width: 100%;
}

/* Animación lateral (rebote de lado a lado) */
@keyframes sideToSide {
    0% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(-10px);
    }
}

/* Responsive */
@media screen and (max-width: 600px) {
    .moving-banner h1 {
        font-size: 20px;
    }

    .moving-banner p {
        font-size: 14px;
    }
}
