/**
* Core
**/
body {
    background: linear-gradient(to bottom right, #DEA54B, #F2CD5D);
    background-attachment: fixed;
    color: #ffffff !important;
    font-size: 16px !important;
}

/**
* Over Write
**/
nav {
    display: none !important;
}

#footer {
    display: none !important;
}

/**
* Page Style
**/
#centeredContainer {
    width: 100%;
    max-width: 1200px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

#headerBox {
    width: 98%;
    max-width: 90%;
    margin: 0 auto;
    font-family: Tahoma, sans-serif !important;
}

#loginBox a {
    color: #ffffff;
    text-decoration: none;
}

#loginBox a:hover {
    text-decoration: underline;
}

.formControlLogin {
    display: block;
    width: 100%;
    padding: .2rem 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #ffffff;
    background: transparent;
    border: none;
    border-bottom: 1px solid #ffffff;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    margin-bottom: 1em;
  }
  
  .formControlLogin:focus {
    outline: none;
    border: none;
    border-bottom: 1px solid #EBEBEB;
    border-radius: 0 !important;
  }