html, body {
    padding: 0;
    margin: 0;
    height: 100%;
}
#background {
    background-color: #000;
    background-image: url(../images/bg.jpg);
    background-position: center;
    background-size: cover;
    height: 100%;
    width: 100%;
    display: table;
}

input:focus {
    outline: none;
}

#loginContainer * {
    color: #fff;
    font-family: "Helvetica Neue", "Helvetica", "Arial", sans-serif;
    font-weight: normal;
    line-height: 1rem;
    box-sizing: border-box;
}

::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #fff;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #fff;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #fff;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #fff;
}
::-ms-input-placeholder { /* Microsoft Edge */
   color:    #fff;
}

::placeholder { /* Most modern browsers support this now. */
   color:    #fff;
}

#loginContainer {
    width: 80%;
    margin: 0 auto;
    position: relative;
    max-width: 1024px;
}

#inputContainer {
    width: 400px;
    padding: 45px;
    float: left;
    border-right: 1px solid #999;
}
#inputContainer h2{
    text-align: center;
}

#registerForm,
#loginForm {
    display: none;
}

#inputContainer input[type="text"],
#inputContainer input[type="email"],
#inputContainer input[type="password"]{
    display: block;
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #fff;
    height: 27px;
    line-height: 27px;
    width: 100%;
}

#inputContainer label {
    color: #a0a0a0;
    font-size: 13px;
    margin-top: 15px;
    display: block;
}

.button {
    position: relative;
    background-color: transparent;
    width: 100%;
    padding: 10px;
    border: 2px solid #fff;
    border-radius: 10px;
    display: block;
    font-size: 14px;
    color: #fff;
    letter-spacing: 1px;
    margin: 20px auto;
    height: 41px;
    overflow: hidden;
    z-index: 1;
    cursor: pointer;
}

.button::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 95%;
    height: 100%;
    background-color: #a0a0a0;
    transform: translateX(-100%);
    transition: .6s ease-in-out;
    z-index: -1;
}

.button:hover::before{
    transform: translateX(0);
}

.hasAccountText span {
    font-size: 12px;
    font-weight: bold;
    cursor: pointer;
}

.hasAccountText {
    text-align: center;
}

.hasAccountText span:hover {
    text-align: center;
}

#loginText {
    padding: 45px;
    display: table-cell;
}

#loginText h1 {
    color: #07d150;
    font-size: 40px;
    font-weight: bold;
}

#loginText h2 {
    margin: 35px 0;
}

#loginText ul {
    padding: 0;
}

#loginText li {
    font-size: 20px;
    list-style-type: none;
    padding: 10px 30px;
    background: url(../images/icons/checkmark.png) no-repeat;
}

#inputContainer .errorMessage{
    color: #07d150;
    font-size: 12px;
    display: block;
}

/*       Loading Process         */
/*       Loading Process         */
/*       Loading Process         */

.center_loader{
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    text-align: center;
    height: 100%;
    width: 100%;
    z-index: 599;
    background-color: rgba(0, 0,0, 0.7);
    color: white;

}

.ring{
    position: absolute;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    animation: ring 2s linear infinite;
}

@keyframes ring {
    0%{
        transform: rotate(0deg);
        box-shadow: 1px 3px 2px #e65c00;
    }
    50%{
        transform: rotate(180deg);
        box-shadow: 1px 3px 2px #18b201;
    }
    100%{
        transform: rotate(360deg);
        box-shadow: 1px 3px 2px #0456c8;
    }
}

.ring::before{
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(255, 255,255, 0.3);
}

.center_loader span{
    color: #737373;
    letter-spacing: 1px;
    line-height: 200px;
    animation: text 3s ease-in-out infinite;
}

@keyframes text {
    50%{
        color: transparent;
    }
}

@media only screen and (max-width: 1024px){
   #loginText{
       display: none;
   }

   #loginContainer {
        width: 80%;
        margin: 0 auto;
        position: relative;
        max-width: 1024px;
    }

    #inputContainer {
        width: 100%;
        padding: 20px;
        border-right: none;
        margin-top: 120px;
    }


}