
.login-box {
    position: relative;
    width: 420px;
    /* height: 520px; */
    padding: 10px 30px;
    background: #FFF;
    /*border: 1px solid #ddd;*/
    border-radius: 10px;
}

.login-header {
    display: flex;
    flex-direction: column;
    text-align: center;
    /*margin: 20px 0 30px 0;*/
    margin-bottom: 13px;
    margin-top: 7px;
}

.login-header header {
    font-family: 'Poppins', sans-serif;
    color: #333;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 2px;
}

.login-header p {
    color: #555;
}

.input-box {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.input-box label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #555;
    transition: .15s ease-in-out;
}

.input-box input,
.input-box select {
    width: 100%;
    height: 50px;
}

.input-box .input-field {
    font-size: 1em;
    color: #333;
    padding-left: 15px;
    /*margin-bottom: 20px;*/
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.input-box .input-field:focus {
    border: 2px solid #8749F2;
}

.input-field:focus ~ label, .input-field:valid ~ label {
    top: -8px;
    left: 12px;
    font-size: 12px;
    color: #7931F5;
    background: #FFF;
    padding: 0 5px;
}

.input-field:valid ~ label {
    color: #555;
}

.forgot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    width: 100%;
    margin-top: 15px;
}

section {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
}

#check {
    margin-right: 10px;
}

section .forgot-link {
    font-weight: 500;
    text-decoration: none;
    color: #7931F5;
}

.input-submit {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #FFF;
    background: #7931F5;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.middle-text {
    position: relative;
    width: 100%;
    margin: 30px 0;
}

.or-text {
    font-family: 'Poppins', sans-serif;
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #FFF;
    color: #777;
    padding: 10px;
}

hr {
    border: 1px solid #ddd;
}

.input-submit:hover {
    opacity: 0.9;
}

.sign-up {
    margin-top: 15px;
    margin-bottom: 5px;

    text-align: center;
}

.sign-up p {
    font-size: 15px;
    color: #333;
}

.sign-up p > a {
    text-decoration: none;
}


/* popup */

#register_popup {
    display: none;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
    /*visibility: hidden;*/
    /*opacity: 0;*/
}

/*.overlay:target {*/
/*    visibility: visible;*/
/*    opacity: 1;*/
/*}*/

.popup {
    margin: 70px auto;
    padding: 25px;
    background: #fff;
    border-radius: 5px;
    width: 28%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 20px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.popup .close:hover {
    color: #06D85F;
}

.popup .content {
    max-height: 30%;
    padding-top: 25px;
    overflow: auto;
}

@media screen and (max-width: 700px) {
    .box {
        width: 70%;
    }

    .popup {
        width: 70%;
    }
}

.loading-app-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f1f1f1;
    display: flex;
    align-items: center;
    user-select: none;
    pointer-events: none;
    justify-content: center;
    z-index: 9999;
    overflow: hidden;
    font-family: Poppins, Helvetica, Arial, sans, serif;
}

.error, .error-message {
    font-size: 11px;
    margin: 6px 0 0 10px;
    color: red;
}

.spinner {
    -webkit-animation: rotate 2s linear infinite;
    animation: rotate 2s linear infinite;
    width: 50px;
    height: 50px;
}

.spinner .path {
    stroke: #7931F5;
    stroke-linecap: round;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
}

@-webkit-keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}

@keyframes dash {
    0% {
        stroke-dasharray: 1, 150;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 90, 150;
        stroke-dashoffset: -124;
    }
}
