html,body {
    height:100%;
}
body {
    display:flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    background-color:rgb(132, 210, 208);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin: 0;
    height: 100vh;
}
.login-container {
    height:70vh;
    width: 40vw;
    display:flex;
    flex-flow: column nowrap;
    justify-content:space-around;
    background-color: rgb(128, 241, 120);
    align-items:center;
    margin: auto;
    border-radius: 20px;
}
.login-content {
    height: auto;
    width: 100%;
    display:flex;
    flex-flow: column nowrap;
    justify-content:space-around;
    align-items:center;
    border-radius: 5px;
    text-decoration: none;
}
.login-content-row {
    height: auto;
    width: 100%;
    display:flex;
    flex-flow: row nowrap;
    justify-content:space-evenly;
    align-items:center;
    border-radius: 5px;
    text-decoration: none;
}