html, body{
    width: 99%;
    height: 99%;
}
.container {
    position: relative;
    height: max-content;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 400px;
    background-color: transparent;
}

input {
    left: 20%;
    padding: 2px;
    padding-left: 5px;
    font-size: large;
    width: 250px;
    height: 40px;
    background-color: transparent;
    border:none;
    outline: none;
    background-color: rgba(153, 150, 150, 0.137);
}

input:focus {
    text-decoration: none;
    overflow: hidden;
    user-select: none;
}
.input {
    padding: 2px;
    width: 250px;
    height: 40px;
    user-select: none;
    
}

div.input {
    padding: 25px;
}


/* Button */
.form-btn {
    margin-top: 50px;
    width: 80%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    overflow: hidden;
    margin-left: 50%;
    transform: translateX(-50%);
    border-radius: 25px;
    background-color: rgba(70, 133, 184, 0.5);
}
  
.login-btn {
    border: none;
    overflow: hidden;
    user-select: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
  
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    width: 100%;
    height: 50px;
    background-color: #4661b8;
    border-radius: 25px;
  
    box-shadow: 0 10px 30px 0px rgba(70, 133, 184, 0.5);

    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}
  
.login-btn:hover  {
    background-color: #333333;
    box-shadow: 0 10px 30px 0px rgba(51, 51, 51, 0.5);

}

.errormsg {
    color: red;
    font-style: italic;
    font-size: smaller;
    text-align: center;
}
