/* LOGIN PAGE CSS */
body {
    background-color: #008FBE !important;
}

.login-logo {
    fill: #ffffff !important;
    height: 122px !important;
    top: 50%;
    left: -25%;
    transform: translate(-100%, -50%);
    position: absolute;
}

.box {
    position: absolute;
    user-select: none;
    top: 50%;
    left: 50%;
    transform: translate(-25%, -50%);
    width: 400px;
    padding: 40px;
    background: #ffffff;
    box-sizing: border-box;
    box-shadow: 0 15px 25px rgba(0, 0, 0, .5);
    border-radius: 20px;
}

@media (max-width: 768px) {
    .box {
        transform: translate(-35%, -50%);
    }

    .login-logo {
        left: -10%;
    }
}

@media (max-width: 610px) {
    .box {
        transform: translate(-50%, -50%);
        left: 60%;
    }

    .login-logo {
        left: -5%;
    }
}

@media (max-width: 540px) {
    .box {
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .login-logo {
        left: 50%;
        top: -10%;
        transform: translate(-50%, -100%);
    }
}

@media (max-width: 540px) and (max-height: 768px) {
    .box {
        left: 50%;
        transform: translate(-50%, -30%);
    }
}

.box h2 {
    margin: 0 0 30px;
    padding: 0;
    color: #38a6be;
    text-align: center;
}

.box .inputBox {
    position: relative;
}

.box .inputBox input {
    width: 100%;
    padding: 10px 0;
    font-size: 16px;
    color: #38a6be;
    margin-bottom: 30px;
    border: none;
    border-bottom: 1px solid #38a6be;
    outline: none;
    background: transparent;
}

.box .inputBox label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 10px 0;
    font-size: 16px;
    color: #38a6be;
    pointer-events: none;
    transition: .5s;
}

.box .inputBox input:focus ~ label,
.box .inputBox input:valid ~ label {
    top: -20px;
    left: 0;
    color: #38a6be;
    font-size: 12px;
}

.box button.login {
    border: none;
    outline: none;
    color: #fff;
    background: #38a6be;
    padding: 10px 20px;
    width: 100%;
    cursor: pointer;
    border-radius: 20px;
}

.form-control{
    border-radius: 0;
}

.form-control:focus{
    box-shadow: none;
}

.form-control:focus.is-invalid{
    box-shadow: none;
}

.rememberme {
    font-size: 0.8125rem !important;
    color: #343A40 !important;
    padding-left: 1.5rem !important;
}

.login-btn {
    margin-top: 5rem !important;
}

.help-btn {
    color: #343A40 !important;
}

.checkbox {
    display: inline-flex;
    cursor: pointer;
    position: relative;
}

.checkbox > input {
    height: 15px;
    width: 15px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid #CED4DA;
    outline: none;
    background-color: #F1F2F2;
    cursor: pointer;
}

.checkbox > input:checked {
    border: 1px solid #ddd;
    background-color: #006d91;
}

.checkbox > input:checked {
    content: '\2713';
    display: block;
    text-align: center;
    position: absolute;
}

.checkbox > input:active {
    border: 1px solid #008FBE !important;
}
