*{
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}
body{
    background-image: url("../img/senderos_login.jpg");
    background-size: cover;
    display: flex;
    height: 100vh;
}
:root{
    --primero:rgba(0, 0, 11, 0.9);;
    --segundo:#00bcd4;
    --tercero:transparent;
    --cuarto:white;
    --quinto:gray;
    --sexto:#fffbd2;
    --septimo:black;
}
.contenedor{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20rem;
    height: 30rem;
    background-color: var(--primero);
    border: 0.40rem solid var(--segundo);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    outline:none;
}
.imagen{
    position: absolute;
    left: 28%;
    top: -9%;
}
.contenedor_login{
    width: 100%;
    height: auto;
    background-color: var(--segundo);
    text-align: center;
    background-color: var(--terciario);
}
.contenedor_login h3{
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1.4rem;
    color:var(--cuarto);
    font-family: monospace;
}
.contenedor_login label{
    display: block;
    font-size: 1.2rem;
    text-align: center;
    font-weight: bold;
    margin-bottom: 0.6rem;
    color: var(--cuarto);
    font-family: sans-serif;
}
.contenedor_login input{
    width: 100%;
    margin-bottom: 1rem;
}
.contenedor_login input[type="text"],
.contenedor_login input[type="password"]{
    border: none;
    background-color:var(--tercero);
    height: 2rem;
    color: var(--cuarto);
    font-size: 1.2rem;
    border: none;
    border-bottom: 1px solid white;
    text-align: center;
    outline: none;
}
.efecto[type="submit"]{
    height: 3rem;
    font-size: 1.7rem;
    font-family: monospace;
    font-weight: bold;
    border: none;
    border-radius: 1rem;
    outline:none;
    cursor: pointer;
    margin-top: 1rem;
    background-color: var(--sexto);
    color: var(--septimo);
    -webkit-transition: width 2s, height 4s;
    transition: width 2s, height 4s;
}
.efecto:hover{
    background-color: var(--segundo);
    width: 200px;
}
