html,
body {
    width: 100%;
    height: 100%;
    background: #057b65;
    margin: 0;
    padding: 0;
}

div.loginform-container {
    width: 400px;
    height: 400px;
    background: #ffffff;
    border-radius: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
}

div>h1 {
    width: 100%;
    height: 10%;
    text-align: center;
    padding-top: 20px;
    color: #057b65;
}

div>form {
    margin-top: 30px;
    width: 100%;
    text-align: center;
    /* background: #FFC619; */
}

.input-container {
    width: 100%;
    margin: 1em 0 0 0;
}

.input-label {
    color: #057b65;
    font-weight: bold;
    font-size: 20px;
}

.input {
    width: 200px;
    height: 30px;
    background: #d2d2d2;
    border-style: none;
    text-indent: 10px;
}

.input::placeholder {
    text-indent: 10px;
}

.login-btn {
    width: 200px;
    height: 50px;
    background: #057b65;
    color: #ffffff;
    font-weight: bold;
    border-style: none;
    border-radius: 100px;
    /* transition: .2s; */
    position: absolute;
    top: 90%;
    left: 50%;
    transform: translateX(-50%) translateY(-90%);
    -webkit-transform: translateX(-50%) translateY(-90%);
}

.login-btn:hover {
    background: #FFC619;
    color: #057b65;
    font-weight: bold;
}

.invalid-feedback {
    font-size: 13px;
    color: #B7071F;
}
