* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background: #000000;
    background-image: url("../img/background.png");
    /* background: radial-gradient(circle, rgba(0, 0, 0, 1) 29%, rgba(97, 37, 52, 1) 100%); */
    /* background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("https://www.campari.com/app/uploads/2022/03/page-bg-history-hero-min.jpg"); */
    /* filter: blur(5px); */
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    gap: 2rem;
    display: grid;
    overflow: hidden;
    align-content: center;
    justify-content: center;
        
}

/* Este es el nuevo contenedor del fondo */
/* body::before {
    content: "";
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%; 
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url("../img/background.png");
    background-size: cover;
    background-position: center;
    filter: blur(3px); 
    transform: scale(1.1); 
    z-index: -1; 
} */

.site-header {
    padding: 16px;
    background-color: black;
}

.site-header__nav {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    align-items: center;
}

.site-header__button {
    text-decoration: none;
    padding: 8px 12px;
    color: white;
    border: 1px solid #3571e6;
    background-color: #3571e6;
    border-radius: 6px;
}

.site-header__button:hover {
    background-color: #2a5db0;
    border-color: #2a5db0;
}

.site-header__logo {
    height: 40px;
    margin-right: auto;
}

.error {
    position: absolute;
    right: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    color: red !important;
    margin: 16px auto 16px auto;
    padding: 12px;
    opacity: 0;

    animation: fadeInOut 10s ease-in-out;
}

.success {
    position: absolute;
    right: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 6px;
    /*color: #fbfbfb !important;*/
    color: green !important;
    margin: 16px auto 16px auto;
    padding: 12px;
    opacity: 0;

    animation: fadeInOut 10s ease-in-out;
}

/* CREO ANIMACION PARA LOS MENSAJES DE ESTADO */
@keyframes fadeInOut {
    0% {
        opacity: 0;
        right: -100px;
    }

    10% {
        right: 10px;
        opacity: 1;
    }

    90% {
        right: 10px;
        opacity: 1;
    }

    100% {
        right: -100px;
        opacity: 0;
    }
}