* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    color: #607260;
}

@media (min-width: 50px) and (max-width: 576px) {
    #Login {
        margin-top: 50px;
    }
    .formulario {
        width: 90%;
    }
    .usuario {
        flex-direction: column;
    }
    .contrasena {
        flex-direction: column;
    }
    .titulo {
        justify-content: flex-start;
        width: 100%;
    }
    .control {
        justify-content: flex-start;
        width: 100%;
    }
}

@media (min-width: 576px) {
    #Login {
        margin-top: 10%;
        height: 480px;
    }
    .formulario {
        width: 80%;
        text-align: center;
    }
    .usuario {
        flex-direction: row;
    }
    .contrasena {
        flex-direction: row;
    }
    .titulo {
        justify-content: flex-end;
        width: 30%;
    }
    .control {
        width: 70%;
    }
}

@font-face {
    font-family: Poppins-Medium;
    src: url('../fonts/poppins/Poppins-Medium.ttf');
}

@font-face {
    font-family: Poppins-Regular;
    src: url('../fonts/poppins/Poppins-Regular.ttf');
}

@font-face {
    font-family: Poppins-Light;
    src: url('../fonts/poppins/Poppins-Light.ttf');
}

@font-face {
    font-family: Poppins-Thin;
    src: url('../fonts/poppins/Poppins-Thin.ttf');
}

.bgcolor {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
}

#Container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
}

#Login {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    width: 95%;
    border-radius: 15px;
    background-color: white;
    color: #808080;
    font-family: Poppins-Regular;
    border-radius: 1em;
    border: 1px solid #F6F7F9;
    box-shadow: 5px 5px 15px rgb(133, 144, 165);
}

.logo {
    display: flex;
    justify-content: center;
    width: 100%;
    border-radius: 15px;
    padding-top: 5px;
}

.logo img {
    width: 85%;
    height: auto;
}

.formulario {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 10px;
}

.usuario {
    display: flex;
    margin-top: 30px;
}

.contrasena {
    display: flex;
    margin-top: 30px;
}

.boton {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.boton button {
    transition: all .3s;
    width: 120px;
    height: 50px;
    color: white;
    background-color: #99b898;
    font-family: Poppins-Regular;
    font-size: smaller;
    border-radius: 100px;
    border: none;
    appearance: none;
    outline: none;
    box-shadow: none;
}

.boton button:hover {
    transition: all .3s;
    background-color: #4C6F47;
}

.titulo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* width: 30%; */
    height: 30px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.control {
    display: flex;
    align-items: center;
    /* width: 70%; */
    height: 30px;
}

.control input {
    width: 100%;
    height: 35px;
    font-family: Poppins-Regular;
    font-size: medium;
    outline: none;
    border: none;
    border-bottom: 1px solid rgba(153, 184, 152, .40);
    border-width: thin;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: .5em;
    border-radius: 4px;
}

.control input:focus {
    border-bottom: 1px solid rgba(153, 184, 152, .40);
    border-width: thin;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

label {
    font-family: Poppins-Regular;
    font-size: x-small;
    color: darkred;
}

.warning {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
    width: 95%;
    max-width: 700px;
    height: 40px;
    padding-left: .1em;
    padding-right: .1em;
    color: #572525;
    background-color: #f7f2d8;
    font-family: Poppins-Regular;
    font-size: smaller;
    border-radius: 10px;
    z-index: 1;
}

.success {
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
    box-sizing: border-box;
    text-align: center;
    width: 95%;
    max-width: 700px;
    height: 40px;
    padding-top: .8em;
    padding-bottom: .5em;
    padding-left: 1em;
    padding-right: 1em;
    color: #572525;
    background-color: #bdf5c0;
    font-family: Poppins-Regular;
    font-size: smaller;
    border-radius: 10px;
    z-index: 1;
}