/* Importar estilos a iconos */
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

/* Tipografia */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Dancing+Script:wght@400..700&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.cdnfonts.com/css/heyam');
@import url("https://fonts.cdnfonts.com/css/gunship");

/* Colores */
:root{
    --text-color: #000;
    --header-color: #fff;
    --logo-color: #2B2D42;
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    text-decoration: none;
    list-style: none;
}
body {
    background-image: url(../../img/OtherImg/bg.jpg);
    background-size: cover;
    background-position: center;
}
header {
    position: fixed;
    width: 100%;
    top: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    background-color: var(--header-color);
    padding: 20px 4%;
    transition: all .50s ease;
}
.logo {
    font-size: 1.7rem;
    color: var(--text-color);
    font-weight: 600;
    transition: all .3s ease;
}
.logo:hover {
    transform: scale(1.05);
}
main {
    margin-top: 5em;
    transition: all .50s ease;
}

 /* Form */
 .container {
    background-color: #fff;
    padding: 20px;
    border-radius: 1em; 
    width: 20%;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 2em;
    margin: 0 auto;
    margin-top: 8em;
}
.container-logo-img {
    height: 50%;
    width: 70%;
    align-self: center;
}
.logo-img {
    width: 100%;
}
.title {
    color: #000;
    -webkit-text-stroke: 0.4px;
    font-family: 'Heyam', sans-serif;
    font-weight: 500;
    text-align: center;
}
.form {
    display: flex;
    flex-direction: column;
    gap: .25em;
}
input {
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #0000002b;
    border-radius: 4px;
}
button {
    padding: 10px;
    background-color: #000000;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    -webkit-animation: rainbow 5s linear infinite;
    animation: rainbow 5s linear infinite;
}

/* Rainbow */
@-webkit-keyframes rainbow {
    0% {
        color: #9e0142
    }

    11% {
        color: #5e4fa2
    }

    22% {
        color: #3288bd
    }

    33% {
        color: #66c2a5
    }

    44% {
        color: #abdda4
    }

    55% {
        color: #ffd769
    }

    66% {
        color: #fdae61
    }

    77% {
        color: #f46d43
    }

    88% {
        color: #d53e4f
    }

    100% {
        color: #9e0142
    }
}

@keyframes rainbow {
    0% {
        color: #9e0142
    }

    11% {
        color: #5e4fa2
    }

    22% {
        color: #3288bd
    }

    33% {
        color: #66c2a5
    }

    44% {
        color: #abdda4
    }

    55% {
        color: #ffd769
    }

    66% {
        color: #fdae61
    }

    77% {
        color: #f46d43
    }

    88% {
        color: #d53e4f
    }

    100% {
        color: #9e0142
    }
}