* {
    font-family: "Courier New", monospace;
    box-sizing: border-box;
    color: #4EE077;
}
body {
    background-color: black;
}
.divLogin, .divRegister, .divConfirm {
    position:fixed;
    left:50%;
    width:200px;
    margin-left:-100px;
    top:50%;
}.divLogin {
    height:224px;
    margin-top:-112px;
}
.divRegister {
    height:258px;
    margin-top:-129px;
}
.divConfirm {
    height:38px;
    margin-top:-17px;
}
input, button {
    width: 100%;
    background-color:black;
    padding:10px;
}
input{
    border-top:1px solid transparent;
    border-left:1px solid transparent;
    border-right:1px solid transparent;
    border-bottom:1px solid #4EE077;
}
button {
    border-top:1px solid transparent;
    border-left:1px solid transparent;
    border-right:1px solid transparent;
    border-bottom:1px solid transparent;
}
input:hover, input:focus, button:hover, button:focus {
    background-color:#4EE077;
    color: black;
    outline: none;
}
input:disabled, button:disabled {
    background-color: #555555;
    color:black;
}
.register, .reset {
    position:fixed;
    top:5px;
    height: 20px;
    line-height: 20px;
}
.register {
    left:5px;
}
.reset {
    right:5px;
}
.divMessage {
    position:fixed;
    top:5px;
    height: 20px;
    line-height: 20px;
    left:5px;
    right:5px;
    text-align:center;
}
a:link {text-decoration: none; color: #4EE077;}
a:visited {text-decoration: none; color: #4EE077;}
a:hover {text-decoration: none; color: yellow;}
a:active {text-decoration: none;  color: #4EE077;}