body{
    height: 100%;
    margin: 0;
    padding: 0;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-image: linear-gradient(to bottom, #2E4274 35%, rgb(2, 12, 32));
    font-family: -apple-system, system-ui, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu;
}

.loginbox{
    width: 400px;
    height: 420px;
    background: rgba(220, 220, 240, 0.85);
    color: rgb(46,66,116);
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    box-sizing: border-box;
    padding: 50px 30px;
    border-radius: 30px;
}

h1{
    margin: 0;
    padding: 0, 0, 20px;
    text-align: center;
    font-size: 1.3em;
}

#login-error-msg-holder {
    width: 100%;
    height: 100%;
    display: grid;
    justify-items: center;
    align-items: center;
}
  
#login-error-msg {
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 5px;
    font-size: 12px;
    font-weight: normal;
    color: #aa0000;
    opacity: 1;
}

.acc_details{
    text-align: center;
}

.loginbox p{
    text-align: center;
    font-weight: normal;
}

.loginbox input{
    width: 100%;
    margin-bottom: 20px;
}

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

.loginbox button[type="submit"]{
    border: none;
    outline: none;
    height: 40px;
    background: #8a0000;
    color: #fff;
    font-size: 1em;
    font-weight: normal;
    border-radius: 20px ;
    width: 100%;
}

.loginbox button[type="submit"]:hover{
    cursor: pointer;
    background: #BD1C28;
}

img#toplogo {
    display: block;
    margin-left: auto;
    margin-right: auto;
}
