:root{
  --pincipal-color: #011c40;
  --azul-suave: #024bac;
  --secundario-color: #BF364F;
  --negro: #0D0D0D;
  --blanco-visible: #F2F2F2;
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    font-family: "Roboto";
}

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

.contenedor_login{
    width: 35%;
    height: 60vh;
    display: flex;
    align-items: center;
    flex-direction: column;
    position: relative;
}

.logo{
    width: 70%;
    height: 30%;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo img{
    max-height: 100%;
    cursor: pointer;
}

.campo{
    background-color: transparent;
    width: 70%;
    height: 40px;
    margin-bottom: 20px;
    padding-left: 5px;
    border: none;
    border-bottom: 2px solid var(--azul-suave);
}

.btn_ingresar{
    background-color: var(--pincipal-color);
    color: var(--blanco-visible);
    font-size: 16px;
    font-weight: 600;
    width: 70%;
    height: 40px;
    position: absolute;
    bottom: 0;
    border: 2px solid var(--pincipal-color);
    cursor: pointer;
    transition: .3s;
}

.btn_ingresar:hover{
    color: var(--secundario-color);
}

@media (max-width:900px) {
    .contenedor_login{
        width: 100%;
    }
}
@media (max-width:600px) {
    .logo{
        width: 90%;
    }
    .campo{
        width: 90%;
    }
    .btn_ingresar{
        width: 90%;
    }
}