.login-body{
    height: 50vh;
    width: 100%;
    position: relative;
}

.login-container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
input[type="text"],input[type="password"]{
    border: none;
    outline: none;
    margin-left: 10px;
    padding: 5px;
    font-size: 17px;
    border: 2px solid black;
}

.holder{
    margin: 20px 0;
}
.login-btn{
    background: green;
    color: white;
    margin-top: 5px;
    padding: 10px;
    cursor: pointer;


}

.login-btn:hover{
    text-decoration: none;
    background-color: black;
    color: white;
}

.holder:nth-child(3){
    text-align: center;
}