@charset "UTF-8";

.login-body {
    margin: 0px;
    padding: 0px;
    height: 100vh;
    width: 100vw;
    background-color: white;
}

.contenerdor_login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}


.linea_menu{
	border: 1px solid black !important;
}

.card_login {
    height: 70vh;
    width: 30vw;
    background-color: rgb(246, 246, 246);
    border: 5px solid;
    border-color: rgb(49, 73, 108);
    border-radius: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.img {
    margin-top: 20px;
    max-width: 35%;
}

.leyenda {
    font-size: 16px;
    color: rgb(82, 85, 97);
    font-weight: 520;
    margin-bottom: 25px;
    margin-top: 5px;
    font-style: italic;
}

.input_text {
    height: 10%;
    border-radius: 50px;
    width: 70%;
    border: 0px !important;
    margin-top: 10px;
    margin-bottom: 5px;
    outline: none !important;
    text-align: center;
}

.boton {
    background: rgb(70, 95, 148);
    background: linear-gradient(114deg, rgba(70, 95, 148, 1) 0%, rgba(50, 74, 113, 1) 35%);
    height: 10%;
    border: 0px;
    border-radius: 50px;
    width: 70%;
    color: white;
    margin-top: 10px;
    margin-bottom: 15px;
}

.img_pie {
    margin-top: 2px;
    max-width: 25%;
    height: 70px;
    margin-bottom: 2px;
}

@media screen and (min-width:320px) {
    .card_login {
        width: 70vw;
    }
    .input_text {
        width: 85%;
    }
    .boton {
        width: 85%;
    }
    .img_pie {
        margin-top: 5px;
        max-width: 30%;
    }
}

@media screen and (min-width:480px) {
    .card_login {
        width: 50vw;
    }
}

@media screen and (min-width:780px) {
    .card_login {
        width: 35vw;
    }
}

@media screen and (min-width:1024px) {
    .card_login {
        width: 30vw;
    }
}