body, html {
    height: 100%;
}


body {
    font-family: 'Courier New', Courier, monospace;
    background-color: #ededed;
    margin: 0;
    padding: 0;
}

header {
    color: red;
    font-size: 24px;
    border-bottom: 3px solid red;  
    padding-bottom: 20px;  
    padding-top: 20px;
    background-color: white;
    padding-left: 10px;
}

form {
    width: 25%;
    min-width: 400px;
    display: block;
    background-color: white;
    margin: 80px auto;
    padding: 10px 30px;
    padding-right: 37px;
    border-right: 2px solid red;
    border-bottom: 2px solid red;
    border-left: 1px solid #ddd;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
}

form > div {
    padding-bottom: 10px;
}

form div label {
    font-weight: bold;
    display: block;
}

form div input {
    display: inline-block;
    margin-bottom: 10px;
    padding: 7px;
    width: 100%;
}

form input[type=submit] {
    border: 2px solid red;
    color: red;
    background-color: #fff;
    padding: 7px;
    font-weight: bold;
    margin: 0 auto;
    display: block;
    width: 50%;
    font-family: 'Courier New', Courier, monospace;
    font-size: 18px;
    border-bottom-right-radius: 5px;
    border-top-left-radius: 5px;
    transition: all ease-out 0.25s;
}

form input[type=submit]:hover {
    color: white;
    background-color: red;
    transition: all ease-out 0.5s;
    cursor: pointer;
}

#errors {
    color:red;
}

.has-error {
    border-color: red;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(255,0,0,.7);
    -moz-box-shadow: 0px 0px 5px 0px rgba(255,0,0,.7);
    box-shadow: 0px 0px 5px 0px rgba(255,0,0,.7);
}

.pl-30 { padding-left: 30px;}

.a-highlight {
    color:red ;
    font-weight: bold;
}

.no-decoration {text-decoration: none;}