@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/iq98/elrecurso/bgblanco6.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.iq {
    position: absolute;
    width: 50%;
    height: 100%;

    background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/iq98/elrecurso/bglogin2.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    border-radius: 50% 0 0 50%;

    box-shadow: -10px 0px 25px #0822597e;

    animation: iq 1s ease;

    top: 0;
    right: 0;
}

.logo-txt {
    color: white;
    font-size: 40px;
    text-align: center;
    font-weight: 600;
}

.logo {
    width: 250px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.555));
}

.login {
    height: 100%;
    width: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}



form {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background-color: rgba(255, 255, 255, 0.205);
    width: 80%;
    max-width: 350px;

    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.253);

    animation: form 1s ease;

    /*background: rgba(255, 255, 255, 0.25);*/
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    /*border: 1px solid rgba(255, 255, 255, 0.18);*/
}

@keyframes form {
    0% {
        opacity: 0;
        transform: translateY(70px);
    }

    100% {
        opacity: 1;

        transform: translateY(0);
    }
}


.login-txt {
    color: #011B4C;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
}

.field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

    width: 100%;

    padding: 0 20px;

    margin-top: 15px;

}

.tag {
    color: rgba(29, 29, 29, 0.555);
    font-weight: 500;
}

.res {
    color: rgba(29, 29, 29, 0.404);
    font-weight: 500;
    border-radius: 10px;
    border: 2px solid rgba(29, 29, 29, 0.322);
    outline: none;
    padding: 7px 10px;
    text-align: left;
    width: 100%;

    transition: .3s ease all;
}

.res:focus {
    font-weight: 700;
    color: #082259;
    border: 2px solid #082259ce;
}

.log-in {
    margin-top: 25px;
    min-width: 120px;
    min-height: 40px;
    border-radius: 10px;
    border: none;
    outline: none;

    color: white;
    font-weight: 500;


    background-color: #FC1C7D;
    border: 1px white solid;

    transition: .5s ease all;
}

.log-in:hover {
    background-color: white;
    color: #844d9b;
    border: solid 1px #844d9b;
    box-shadow: #844d9b 0 0 5px;

}

.res:focus~span {
    color: #082259;
}

.form-logo {
    display: none;
}

@media screen and (max-width: 750px) {

    .iq {
        display: none;
    }

    body {
        align-items: center;
        justify-content: center;
        background: url(https://sfo3.digitaloceanspaces.com/e-fuente/e-fuentedevida.net/iq98/elrecurso/bglogin2.jpg);

        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .login {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .form-logo {
        display: block;
        width: 150px;
    }

    .login-txt {
        color: white;
    }

    .tag {
        color: white;
    }

}