body {
    font-family: sans-serif;
    background-color: #262626;
}

.loginstart {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.loginmain {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #1f1f2e;
    color: white;
    flex-direction: column;
    padding: 30px;
    border-radius: 20px;
    -webkit-box-shadow: 10px 10px 5px -1px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 5px -1px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 5px -1px rgba(0,0,0,0.75);
}

.logintitle {
    font-weight: normal;
    letter-spacing: 3px;
    margin: 10px;
}

#username {
    margin: 10px;
    background-color: #1f1f2e;
    border: solid 1px #33ccff;
    padding: 10px;
    border-radius: 20px;
    color: white;
    text-align: center;
}

#username:focus {
    border: solid 1px #33ccff!important;
    outline: none;
    -webkit-box-shadow: 0px 0px 8px 0px #33ccff;
    -moz-box-shadow: 0px 0px 8px 0px #33ccff;
    box-shadow: 0px 0px 8px 0px #33ccff;
}

#password {
    margin: 10px;
    background-color: #1f1f2e;
    border: solid 1px #33ccff;
    padding: 10px;
    border-radius: 20px;
    color: white;
    text-align: center;
    margin-top: 5px;
}

#password:focus {
    border: solid 1px #33ccff!important;
    outline: none;
    -webkit-box-shadow: 0px 0px 8px 0px #33ccff;
    -moz-box-shadow: 0px 0px 8px 0px #33ccff;
    box-shadow: 0px 0px 8px 0px #33ccff;
}

#showpassword {
    background-color: #1f1f2e;
    border: none;
    color: #676798;
}

#showpassword:focus {
    outline: none;
}

#loginbutton {
    margin: 10px;
    background-color: #1f1f2e;
    border: solid 1px #66ff66;
    padding: 10px;
    border-radius: 20px;
    width: 50%;
    color: #cccccc;
    font-size: 15px;
}

#loginbutton:active {
    outline: none;
    background-color: #66ff66;
    color: #1f1f2e;
}

#loginbutton:focus {
    outline: none;
}