html,
body {
	background-image: url("../img/logo.png");
    background-repeat: no-repeat;
    background-size: 180px;
    font-family: Arial, sans-serif;
    height:100%;
    margin:0;
    padding:0;
}

.content {
    min-height:100%;
    position:relative;
}

.text {
    font-size: 22px;
    color: #FFFFFF;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.footer {
    color: #777777;
    font-size: 12px;
    height: 35px;
    left: 50%;
    position: fixed;
    top: 100%;
    transform: translate(-50%, -50%);
}

.centerDiv {
    border: 2px solid #FFA500;
    background-color: #FFFFFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04), 0 0px 5px 0 rgba(0, 0, 0, 0.04);
    height:400px;
    left: 50%;
    position: fixed;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
}

.loading {
    background-color: #FFFFFF;
    display: none;
    height: 100%;
    width: 100%;
    z-index: 9999;;
    opacity: 0.8;
}

.loader {
    left: 50%;
    position: fixed;
    top: 50%;
    border: 8px solid #FCEEDE;
    border-top: 8px solid #FF9900;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    animation: spin 2s linear infinite;
}

.form {
    background: #FFFFFF;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.08), 0 5px 5px 0 rgba(0, 0, 0, 0.08);
    display: none;
    left: 50%;
    margin: 0 auto 50px;
    padding: 45px;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
}

input {
    background: #f2f2f2;
    border: 0;
    box-sizing: border-box;
    color: #444444;
    font-size: 22px;
    margin: 0 0 0;
    padding: 15px;
    outline: 0;
    width: 100%;
}

.error-message{
    color: #bf300f;
    font-size: 14px;
    padding: 7px;
    text-align: left;
}

button {
    background: #FFA500;
    border: 0;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 14px;
    outline: 0;
    padding: 15px;
    text-transform: uppercase;
    transition: all 0.3 ease;
    width: 100%;
    -webkit-transition: all 0.3 ease;
}

button:hover,button:active {
    background: #FFA90D;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.04), 0 5px 5px 0 rgba(0, 0, 0, 0.04);
}

@keyframes spin {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}