﻿@import url('https://fonts.googleapis.com/css?family=Nuto:400,700');
@font-face {
    font-family: 'Epilogue';
    src: url('assets/fonts/Epilogue/static/Epilogue-Black.ttf') format('ttf'), url('assets/fonts/Epilogue/static/Epilogue-Light.ttf') format('ttf'), url('assets/fonts/Epilogue/static/Epilogue-Light.ttf') format('ttf');
    /* Agrega otros formatos de fuente si los tienes disponibles */
    font-weight: 900;
    font-style: normal;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    font-family: poppins;
    margin: 0;
    padding: 0;
}


.context {
    
    position: absolute;
    top: 50vh;
}

section {
    width: 100%;
    min-height: 100vh; /* Cambiamos height por min-height */
    display: flex;
    justify-content: center;
    align-items: center;
    /*background-color: linear-gradient(to bottom, #a80000, #302c2c);*/
    overflow: hidden; /* Agregamos overflow: hidden para ocultar el scrollbar */
}

    section .color {
        position: absolute;
        filter: blur(150px);
    }

        section .color:nth-child(1) {
            top: -350px; /* Agregamos px para indicar unidades */
            width: 600px;
            height: 600px;
            background-color: #ff359b;
        }

        section .color:nth-child(2) {
            bottom: -150px;
            left: 100px;
            width: 500px;
            background-color: #0128d6;
        }

        section .color:nth-child(3) {
            bottom: 50px;
            right: 100px;
            width: 300px;
            height: 300px;
            background-color: #302c2c;
        }


    section .box {
        position: relative;
    }

        section .box .square {
            position: absolute;
            backdrop-filter: blur(5px);
            box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            animation: animate1 10s linear infinite;
            animation-delay: calc(-1s * var(--i));
        }


section .box .square:nth-child(1) {
    top: -50px;
    right: -60px;
    width: 100px;
    height: 100px;
}

section .box .square:nth-child(2) {
    top: 150px;
    left: -80px;
    width: 100px;
    height: 100px;
    z-index: 2;
}

section .box .square:nth-child(3) {
    bottom: 50px;
    right: -60px;
    width: 80px;
    height: 80px;
    z-index: 2;
}

section .box .square:nth-child(4) {
    bottom: -80px;
    left: 100px;
    width: 50px;
    height: 50px;
}

section .box .square:nth-child(5) {
    top: -80px;
    left: 140px;
    width: 60px;
    height: 60px;
}

section .container {
    position: relative;
    width: 500px;
    min-height: 400px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

    section .container form {
        position: relative;
        padding: 20px;
        text-align: center;
    }
    section .container .from {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
    }
        section .container .from img {
            vertical-align: middle;
            width: 230px;
            height: 80px;
            margin-top: 20px; /* Margen superior */

            /*border-radius: 100%;*/
        }
        section .container .from epilogue {
            font-family: 'Epilogue', Arial, sans-serif;  /*Aplica la fuente Epilogue */
            font-weight: 300;  /*Selecciona el peso de la fuente Light */
            color: #fff;
            font-size: 65px;
            display: inline-block;
            vertical-align: middle;
            margin-left: 1px;  /*Ajusta el margen según sea necesario */
            margin-top: 23px;  /*Margen superior */
        }
        section .container .from h1 {
            margin-top: 23px; /* Margen superior */
            color: #fff;
            font-size: 35px;
            font-weight: 600;
            letter-spacing: 1px;
            margin-left: 0px;
            text-align: center;
        }

        section .container .from h2 {
            margin-top: 23px; /* Margen superior */
            position: relative;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            letter-spacing: 1px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
        }

            section .container .from h2::before {
                content: '';
                position: absolute;
                bottom: -10px;
                left: 0;
                right: 0;
                width: 50%;
                height: 4px;
                background: #041863;
                margin-left: auto;
                margin-right: auto;
            }

    section .container .from .inputBox {
        width: 100%;
        margin-top: 10px;
    }

        section .container .from .inputBox input {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            outline: none;
            padding: 10px 20px;
            border-radius: 35px;
            font-size: 16px;
            letter-spacing: 1px;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

            section .container .from .inputBox input::placeholder {
                color: #fff;
            }


    section .container .from .forget {
        margin-top: 5px;
        color: #fff;
    }

    section .container form .forget a {
        color: #302c2c;
        font-weight: 600;
        text-decoration: underline;
        text-decoration-color: #fff;
        text-decoration: none;
    }

.area {
    /*background-color: #302c2c;
    background-image: linear-gradient(43deg, #302c2c 0%, #ea1111 46%, #a80000 100%);*/
    /* Configuración del fondo */
    background-image: url('../assets/img/misurina-sunset.jpg');
    background-size: cover; /* Ajusta la imagen para cubrir todo el fondo */
    background-position: center; /* Centra la imagen */
    background-repeat: no-repeat; /* Evita que se repita la imagen */
    /* Color de fondo transparente encima de la imagen */
    background-color: rgba(0, 0, 0, 0.5); /* Negro con 50% de opacidad */
    background-blend-mode: overlay; /* Mezcla el color con la imagen */
}

.circles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

    .circles li {
        position: absolute;
        display: block;
        list-style: none;
        width: 20px;
        height: 20px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.2);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 80px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        animation: animate 25s linear infinite;
        bottom: -150px;
    }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }


        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }

button {
    margin-top: 10px; /* Margen superior */
    margin-bottom: 10px; /* Margen superior */
    position: relative;
    padding: 1em 1.8em;
    outline: none;
    border: 1px solid #303030;
    background: #092899;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 15px;
    overflow: hidden;
    transition: 0.2s;
    border-radius: 40px;
    cursor: pointer;
    font-weight: bold;
}

    button:hover {
        box-shadow: 0 0 10px white, 0 0 35px white, 0 0 50px white;
        transition-delay: 0.6s;
    }

    button span {
        position: absolute;
    }

        button span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, white);
        }

    button:hover span:nth-child(1) {
        left: 100%;
        transition: 0.7s;
    }

    button span:nth-child(3) {
        bottom: 0;
        right: -100%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, white);
    }

    button:hover span:nth-child(3) {
        right: 100%;
        transition: 0.7s;
        transition-delay: 0.35s;
    }

    button span:nth-child(2) {
        top: -100%;
        right: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, transparent, white);
    }

    button:hover span:nth-child(2) {
        top: 100%;
        transition: 0.7s;
        transition-delay: 0.17s;
    }

    button span:nth-child(4) {
        bottom: -100%;
        left: 0;
        width: 2px;
        height: 100%;
        background: linear-gradient(360deg, transparent, white);
    }

    button:hover span:nth-child(4) {
        bottom: 100%;
        transition: 0.7s;
        transition-delay: 0.52s;
    }

    button:active {
        background: #ae00af;
        background: linear-gradient(to top right, #a80000, #302c2c);
        color: white;
        box-shadow: 0 0 8px #ae00ff, 0 0 8px #001eff, 0 0 8px #ae00ff;
        transition: 0.1s;
    }

        button:active span:nth-child(1)
        span:nth-child(2)
        span:nth-child(2)
        span:nth-child(2) {
            transition: none;
            transition-delay: none;
        }
.tooltip {
    position: relative;
}

    .tooltip::after {
        content: attr(title);
        position: absolute;
        bottom: 100%;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(0, 0, 0, 0.8);
        color: #fff;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 14px;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .tooltip:hover::after {
        opacity: 1;
    }

@keyframes animate {

    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 1;
        border-radius: 0;
    }

    100% {
        transform: translateY(-1000px) rotate(720deg);
        opacity: 0;
        border-radius: 50%;
    }
}

@keyframes animate1 {
    0%, 100% {
        transform: translate(-30px);
    }

    50% {
        transform: translate(30px);
    }
}