body{
    margin: 0;
    padding: 0;
    background-size: cover;
    font-family: "Conformataa", sans-serif;
}

.login{
    width: 320px;
    height: 420px;
    border:2px solid #000;
    border-radius: 80px 0px 80px 0px;
    color: white;
    background-color: rgba(0,5,0, 0.88);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50% , -50%);
    box-sizing: border-box;
    padding: 68px 28px ;
}

.usuario{
    border-radius: 50px;
    position: absolute;
    top: -50px;
    left: 112px;
}

h1 {
    margin: 0;
    padding-top: 0;
    padding-left: 0;
    padding-bottom: 20px;
    letter-spacing: 10px;
    text-transform: uppercase;
    text-align: center;
    font-size: 25px;
}

.login p{
    margin: 0;
    padding: 0;
    font-weight: bold;
}

.login input{
    width: 100%;
    margin-bottom: 21px;
}

.login input[type="text"], .login input[type="password"]{
    border: none;
    border-bottom: 1px solid white;
    background: transparent;
    outline: none;
    height: 40px;
    color: white;
    font-size: 16px;
}

.login input[type="submit"]{
    border: none;
    outline: none;
    height: 35px;
    background: #fff;
    border-radius: 20px;
    transition: 0.2s;
}

.login input[type="submit"]:houver{
    cursor: pointer;
    background: #ff4d4d;
    transition: 0.2s;
}

.login a{
    font-weight: bold;
    text-decoration: none;
    font-size: 12px;
    line-height: 20px;
    color: gray;
    transition: 0.2s;
}

.login a:houver{
    transition: 0.2s;
    color: #ffadad;
}