@font-face {
    font-family: "NexoFont";
    src: url("../fonts/sackers-gothic-std.otf");
  }

@font-face {
  font-family: "Glacial";
  src: url("../fonts/GlacialIndifference-Regular.otf");
}

@font-face {
    font-family: "NotoSerif";
    src: url("../fonts/NotoSerif-Regular.ttf");
  }


.login{
    margin: 90px 5% 0 5%;
    font-family: "NexoFont", "Serif";
    display: flex;
    justify-content: center;
    align-items: center;
}
.login-menu{
    margin: 100px 0 160px 0;
    width: 1000px;
    height: 600px;
    border-radius: 20px;
    display: flex;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.menu-izq{
    background-image: url("../img/imagen-login.png");
    background-position: center;
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    width: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;

}
.menu-izq h2{
    font-size: 50px;
}

.menu-der{
    width: 50%;
}
.formulario-login{
    font-family: "Glacial", sans-serif;
    gap:20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
}
.formulario-login>input{
    width: 70%;
    height: 40px;
    border: 1px solid black;
    border-radius: 5px;
    font-size: 20px;
    padding-left: 10px;
}
.submit-button{
    background-color: #80B5A5;
    color: white;
}
.formulario-login>legend{
    font-size: 2rem;
}
.login-error{
    width: 70%;
    padding: 8px 10px;
    border: 1px solid #c03a2b;
    border-radius: 6px;
    color: #c03a2b;
    background-color: #fdecea;
    font-size: 14px;
}

@media screen and (max-width: 750px){
    .login{
        margin: 90px 3% 0 3%;
    }

    .login-menu{
        margin: 60px 0 80px 0;
        width: 100%;
        max-width: 500px;
        height: auto;
        min-height: 620px;
        flex-direction: column;
    }

    .menu-izq{
        width: 100%;
        height: 260px;
        background-position: center 40%;
        border-top-right-radius: 20px;
        border-bottom-left-radius: 0;
    }

    .menu-der{
        width: 100%;
        flex: 1;
        padding: 28px 0;
    }
}

