.blurify.active {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.login-modal, .register-modal {
    position: fixed;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.65);
    top: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: none;
}

.login-modal .close, .register-modal .close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 40px;
    color: #FFF;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.login-modal .close:hover, .register-modal .close:hover {
    opacity: 0.8;
}

.auth-box {
    display: inline-block;
    max-width: 360px;
    width: 100%;
    background-color: #fff;
    padding: 20px;
    margin-top: 100px;
    border-radius: 4px;
    box-shadow: 0 0 55px rgba(0, 0, 0, 0.41);
}

.auth-box .auth-tabs {
    border: 1px solid rgb(221, 221, 221);
    border-radius: 2px;
    margin-bottom: 18px;
    overflow-y: auto;
}

.auth-box .auth-tabs span {
    cursor: pointer;
    display: inline-block;
    width: 100%;
    float: left;
    padding: 8px;
    border-right: 1px solid #ddd;
    color: #727272;
    font-size: 14px;
}

.auth-box .auth-tabs span:last-child {
    border-right:none;
}

.auth-box .auth-tabs span.active {
    color: #55a747;
    background-color: rgba(85, 167, 71, 0.09);
}

.auth-box .auth-tabs span:hover {
    color: #55a747;
}

.auth-box .auth-tabs span i {
    margin-right: 7px;
}

.auth-box h2 {
    font-family: Montserrat;
    color: #828282;
    text-transform: uppercase;
}

.auth-box input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border: 0;
    outline: 0;
    font-family: Montserrat;
    margin-bottom: 20px;
    border: 1px solid #dfdfdf;
    border-radius: 2px;
    box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.05);
}

.auth-box input.incomplete {
    background-color: #ffeaea;
    border: 1px solid rgba(225, 71, 71, 0.43);
    box-shadow: 0 0 6px rgba(225, 71, 71, 0.25);
}

.auth-box .login, .auth-box .register {
    display: inline-block;
    float: right;
    font-size: 16px;
    background-color: #55a747;
    color: #fff;
    border-radius: 3px;
    padding: 4px 12px;
    cursor: pointer;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

.auth-box .login:hover, .auth-box .register:hover {
    opacity: 0.8;
}