﻿*, *::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
/* Generic */
body {
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    background: linear-gradient(#141e30, #243b55);
    color: #a0a5a8;
}
.img {
    font-size:10px;
}

.form {
    width: 600px;
    height: 730px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding:10px;
}
.form2 {
    width: 500px;
    height: 500px;
    border-radius: 8px;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    overflow: hidden;
    padding: 10px;
}
.logo img{
    width:100px;
    text-align:center;
}

.form__icon {
    object-fit: contain;
    width: 30px;
    margin: 0 5px;
    opacity: 0.5;
    transition: 0.15s;
}
    .form__icon:hover {
        opacity: 1;
        transition: 0.15s;
        cursor: pointer;
    }

.form__input {
    width: 350px;
    height: 40px;
    margin: 4px 0;
    padding-left: 10px;
    font-size: 12px;
    letter-spacing: 0.15px;
    border: none;
    outline: none;
    font-family: "Montserrat", sans-serif;
    background-color: #f8fcff;
    transition: 0.25s ease;
    border-radius: 0px;
    box-shadow: inset 2px 2px 4px #d1d9e6, inset -2px -2px 4px #fffcfc;
}

    .form__input:focus {
        box-shadow: inset 4px 4px 4px #d1d9e6, inset -4px -4px 4px #f9f9f9;
    }

.form__span {
    margin-top: 30px;
    margin-bottom: 12px;
}

.form__link {
    color: #181818;
    font-size: 15px;
    margin-top: 25px;
    border-bottom: 1px solid #a0a5a8;
    line-height: 2;
}

.title {
    font-size: 34px;
    font-weight: 700;
    line-height: 3;
    color: #181818;
}

.description {
    font-size: 14px;
    letter-spacing: 0.25px;
    text-align: center;
    line-height: 1.6;
}

.button {
    width: 150px;
    height: 40px;
    border-radius: 0px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.15px;
    background-color: #03506f;
    color: #f9f9f9;
    border: none;
    outline: none;
    margin: 5px;
}

/**/
.danger {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color: #2357f1;
    font-size: 9px;
}

.form-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 8px;
}

.switch__button:hover {
    box-shadow: 1px 1px 1px #d1d9e6;
    transform: scale(0.985);
    transition: 0.25s;
}

    .switch__button:active, .switch__button:focus {
        box-shadow:;
        transform: scale(0.97);
        transition: 0.25s;
    }

.is-txr {
    left: calc(100% - 400px );
    transition: 1.25s;
    transform-origin: left;
}

.is-txl {
    left: 0;
    transition: 1.25s;
    transform-origin: right;
}

.is-z200 {
    z-index: 200;
    transition: 1.25s;
}

.is-hidden {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    transition: 1.25s;
}

.is-gx {
    animation: is-gx 1.25s;
}
.cerrar {
  
    margin: 0;
    padding: 0;
}

    .cerrar a {
      
        color: #808080;
        font-size: 14px;
        text-decoration: none;
        margin: 10px;
    }
.iconheader li {
    display: inline;
    margin: 6px;
    font-size: 25px;
 
}
    .iconheader li a {
        color: #ffffff;
    }

@keyframes is-gx {
    0%, 10%, 100% {
        width: 400px;
    }

    30%, 50% {
        width: 500px;
    }
}

@media screen and (max-width:1500px) {
    .form {
        width: 500px;
        height: 650px;
    }
    .form2 {
        width: 460px;
        height: 460px;
    }
    .logo img {
        width: 100px;
        text-align: center;
    }
    .form__input {
        width: 280px;
        height: 31px;
    }

    .button {
        width: 140px;
        height: 35px;
      
    }

    .form__input {
        font-size: 10px;
    }

}
@media screen and (max-width:480px) {
    .form2 {
        width: 350px;
        height:450px;
    }
    .form {
        width: 350px;
        height: 700px;
    }

    .logo img {
        width: 100px;
        text-align: center;
    }
    .form__input {
        width: 300px;
        height: 35px;
    }

    .button {
        width: 120px;
        height: 35px;
    }
 
}


