@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 200;
    src: url(fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_wlxdr.ttf) format('truetype');
}
@font-face {
    font-family: 'Source Sans Pro';
    font-style: normal;
    font-weight: 300;
    src: url(fonts/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zwlxdr.ttf) format('truetype');
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-weight: 300;
}
body {
    font-family: 'Source Sans Pro', sans-serif;
    color: white;
    background: linear-gradient(to bottom left, #425853 34%, #dab987e0 200%);
    height: 100vh; /* Full viewport height */
    overflow: hidden;
    position: relative;
    user-select: none; /* Deshabilitar selección de texto */
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 80px 0;
    text-align: center;
    z-index: 1; /* Asegurar que esté por encima del contenido */
}
form {
    padding: 20px 0;
    position: relative;
    z-index: 2;
}
form input, form button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    outline: 0;
    border-radius: 3px;
    padding: 10px 15px;
    display: block;
    margin: 0 auto 10px;
    width: 250px;
    text-align: center;
    font-size: 18px;
    transition: background-color 0.25s, width 0.25s;
}
form input[type="email"], form input[type="password"] {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
}
form input[type="email"]:focus, form input[type="password"]:focus {
    background-color: white;
    color: #425853;
    width: 300px;
}
form button {
    background-color: #c3a572;
    color: #000;
    border: 0;
    cursor: pointer;
}
form button:hover {
    background-color: #f5f7f9;
}

.letras {
    margin-bottom: 17px;
    position: relative;
    left: 50%;
    top: 100%; /* Mover debajo de la imagen */
    transform: translateX(-50%); /* Centrar horizontalmente */
}

ul {
    display: flex;
    justify-content: center;
}

ul li {
    list-style: none;
    color: #fff;
    letter-spacing: 10px;
    font-size: 1em;
    font-weight: bold;
    filter: blur(0.3px);
}

ul:hover li {
    animation: humo 2s linear forwards;
}

@keyframes humo {
    0% {
        transform: rotate(0deg) translateY(0);
        opacity: 1;
        filter: blur(1px);
    }

    100% {
        transform: rotate(45deg) translateY(-200px);
        opacity: 0;
        filter: blur(20px);
    }
}

ul li:nth-child(1) {
    animation-delay: 0s;
}

ul li:nth-child(2) {
    animation-delay: 0.4s;
}

ul li:nth-child(3) {
    animation-delay: 0.8s;
}

ul li:nth-child(4) {
    animation-delay: 1.2s;
}

ul li:nth-child(5) {
    animation-delay: 1.6s;
}

ul li:nth-child(6) {
    animation-delay: 2s;
}

ul li:nth-child(7) {
    animation-delay: 2.4s;
}

ul li:nth-child(8) {
    animation-delay: 1.1s;
}

ul li:nth-child(9) {
    animation-delay: 3.2s;
}

ul li:nth-child(10) {
    animation-delay: 3.6s;
}

ul li:nth-child(11) {
    animation-delay: 4.1s;
}

ul li:nth-child(12) {
    animation-delay: 4.4s;
}

ul li:nth-child(13) {
    animation-delay: 4.8s;
}
::placeholder {
  color: #dafde3;
  opacity: 1;
}
.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
.container {
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
    width: 100%;
    text-align: center;
}