@import url(https://fonts.googleapis.com/css?family=Roboto:300);

.login-page {
    width: 360px;
    padding: 8% 0 0;
    margin: auto;
}
.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    max-width: 360px;
    margin: 0 auto 30px;
    padding: 45px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2), 0 5px 5px 0 rgba(0, 0, 0, 0.24);
    border-radius: 8px;
    overflow: auto;
}
.form input {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 15px;
    box-sizing: border-box;
    font-size: 14px;
    border-radius: 8px;
}
.form button {
    font-family: "Roboto", sans-serif;
    text-transform: uppercase;
    outline: 0;
    background: #00B389;
    width: 100%;
    border: 0;
    padding: 15px;
    color: #FFFFFF;
    font-size: 14px;
    -webkit-transition: all 0.3 ease;
    transition: all 0.3 ease;
    cursor: pointer;
    border-radius: 8px;
}
.loading_button {
    font-family: "Roboto", sans-serif;
    outline: 0;
    background: #00B389;
    width: 100%;
    height: 46.5px;
    border: 0;
    padding: 8px;
    color: #FFFFFF;
    font-size: 14px;
    border-radius: 8px;
}
.disabled {
    cursor: none !important;
    pointer-events: none !important;
    opacity: 0.6 !important;
}
.form button:hover,.form button:active,.form button:focus {
    background: #0e9475;
}
.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}
.form .error {
    width: 100%;
    min-height: 17px;
    line-height: 12px;
    margin: 0 0 10px;
    color: #d0112b;
    font-size: 12px;
    text-decoration: none;
    text-align: left;
}
.form .success {
    width: 100%;
    min-height: 17px;
    line-height: 12px;
    margin: 0 0 10px;
    color: #049355;
    font-size: 12px;
    text-decoration: none;
    text-align: left;
}
.form .info {
    width: 100%;
    min-height: 17px;
    line-height: 12px;
    margin: 0 0 10px;
    color: #5d5d5d;
    font-size: 12px;
    text-decoration: none;
    text-align: left;
}
.form .message a {
    color: #00B389;
    text-decoration: none;
}
.form .message a:hover {
    color: #0e9475;
}
.form .register-form {
    display: none;
}
.container {
    position: relative;
    z-index: 1;
    max-width: 300px;
    margin: 0 auto;
}
.container:before, .container:after {
    content: "";
    display: block;
    clear: both;
}
.container .info {
    margin: 50px auto;
    text-align: center;
}
.container .info h1 {
    margin: 0 0 15px;
    padding: 0;
    font-size: 36px;
    font-weight: 300;
    color: #1a1a1a;
}
.container .info span {
    color: #4d4d4d;
    font-size: 12px;
}
.container .info span a {
    color: #000000;
    text-decoration: none;
}
.container .info span .fa {
    color: #00B389;
}
.logo {
    width: 100%;
    position: relative;
    background-image: url(../img/logo.png);
    height: 50px;
    background-size: 200px;
    background-repeat: no-repeat;
    margin: 0 auto;
    background-position-x: center;
}
.lds-ring {
    display: inline-block;
    position: relative;
    width: 30.5px;
    height: 30.5px;
}
.lds-ring div {
    box-sizing: border-box;
    display: block;
    position: absolute;
    width: 30.5px;
    height: 30.5px;
    border: 4px solid #fff;
    border-radius: 50%;
    animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
    animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
    animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
    animation-delay: -0.15s;
}
@keyframes lds-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}