
/* ==========================================================
   DATA LOGGER - PREMIUM LOGIN
   Compatible with AdminLTE 2 + Bootstrap 3
   ========================================================== */


/* ----------------------------------------------------------
   BODY
   ---------------------------------------------------------- */

body.login-page,
body.hold-transition {
    min-height: 100vh !important;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(0, 188, 212, 0.20),
            transparent 32%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(33, 150, 243, 0.18),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            #061521 0%,
            #0a2940 48%,
            #071522 100%
        ) !important;

    background-image: none !important;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family:
        "Source Sans Pro",
        "Segoe UI",
        Arial,
        sans-serif;

    overflow: hidden;
}


/* ----------------------------------------------------------
   BACKGROUND EFFECT
   ---------------------------------------------------------- */

body.hold-transition::before {
    content: "";

    position: fixed;

    width: 420px;
    height: 420px;

    left: -190px;
    top: -190px;

    border-radius: 50%;

    background: rgba(0, 188, 212, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.04);

    pointer-events: none;
}

body.hold-transition::after {
    content: "";

    position: fixed;

    width: 500px;
    height: 500px;

    right: -250px;
    bottom: -250px;

    border-radius: 50%;

    background: rgba(33, 150, 243, 0.10);

    border: 1px solid rgba(255, 255, 255, 0.04);

    pointer-events: none;
}


/* ----------------------------------------------------------
   LOGIN BOX
   ---------------------------------------------------------- */

.login-box {
    position: relative;

    width: 410px !important;

    margin: 0 auto !important;

    z-index: 10;
}


/* ----------------------------------------------------------
   LOGIN LOGO / TITLE
   ---------------------------------------------------------- */

.login-logo {
    margin-bottom: 18px !important;

    text-align: center;
}

.login-logo .login-box-body {
    padding: 0 !important;

    background: transparent !important;

    box-shadow: none !important;
}

.login-logo a {
    display: inline-block;

    color: #ffffff !important;

    font-size: 31px !important;

    font-weight: 300;

    text-decoration: none;

    letter-spacing: -0.5px;

    text-shadow:
        0 4px 15px rgba(0, 0, 0, 0.30);
}

.login-logo a b {
    font-weight: 700;
}

.login-logo a::before {
    content: "\f0c2";

    display: inline-flex;

    width: 48px;
    height: 48px;

    align-items: center;
    justify-content: center;

    margin-right: 10px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            #087da7,
            #08a2b8
        );

    color: #ffffff;

    font-family: FontAwesome;

    font-size: 20px;

    vertical-align: middle;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.22);
}


/* ----------------------------------------------------------
   MAIN LOGIN PANEL
   ---------------------------------------------------------- */

.login-box > .login-box-body {
    position: relative;

    padding: 38px 38px 34px !important;

    border-radius: 24px !important;

    background:
        rgba(255, 255, 255, 0.97) !important;

    border: 1px solid rgba(255, 255, 255, 0.55);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.35),
        0 8px 25px rgba(0, 0, 0, 0.12);

    overflow: hidden;
}


/* Top decorative line */

.login-box > .login-box-body::before {
    content: "";

    position: absolute;

    left: 0;
    top: 0;

    width: 100%;
    height: 4px;

    background:
        linear-gradient(
            90deg,
            #087da7,
            #08a2b8,
            #1597bd
        );
}


/* ----------------------------------------------------------
   LOGIN MESSAGE
   ---------------------------------------------------------- */

.login-box-msg {
    padding: 0 !important;

    margin: 0 0 28px !important;

    color: #657580;

    font-size: 14px;

    line-height: 1.6;

    text-align: center;
}

.login-box-msg::before {
    content: "ADMINISTRATOR";

    display: block;

    margin-bottom: 8px;

    color: #0786ae;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 2px;
}


/* ----------------------------------------------------------
   FORM GROUP
   ---------------------------------------------------------- */

.login-box .form-group {
    margin-bottom: 20px;
}


/* ----------------------------------------------------------
   INPUT
   ---------------------------------------------------------- */

.login-box .form-control {
    height: 52px !important;

    padding-left: 48px !important;

    padding-right: 42px !important;

    border: 1px solid #e0e7eb !important;

    border-radius: 13px !important;

    background: #f7f9fa !important;

    color: #263746 !important;

    font-size: 14px;

    box-shadow: none !important;

    transition:
        border-color 0.2s ease,
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.login-box .form-control::placeholder {
    color: #a8b2b8;
}

.login-box .form-control:focus {
    border-color: #0b91b7 !important;

    background: #ffffff !important;

    box-shadow:
        0 0 0 4px rgba(11, 145, 183, 0.09) !important;
}


/* ----------------------------------------------------------
   INPUT ICON
   ---------------------------------------------------------- */

.login-box .form-control-feedback {
    width: 42px !important;

    height: 52px !important;

    line-height: 52px !important;

    color: #9aa7af !important;

    font-size: 15px;

    transition: color 0.2s ease;
}

.login-box .form-control:focus ~ .form-control-feedback {
    color: #0786ae !important;
}


/* ----------------------------------------------------------
   REMEMBER ME
   ---------------------------------------------------------- */

.login-box .checkbox {
    margin-top: 7px !important;

    margin-bottom: 0 !important;
}

.login-box .checkbox label {
    padding-left: 0 !important;

    color: #74828b;

    font-size: 12px;

    cursor: pointer;
}

.login-box .checkbox label:hover {
    color: #0786ae;
}

.login-box .checkbox input {
    margin-right: 6px;
}


/* ----------------------------------------------------------
   BUTTON
   ---------------------------------------------------------- */

.login-box .btn-primary {
    height: 48px;

    border: 0 !important;

    border-radius: 12px !important;

    background:
        linear-gradient(
            135deg,
            #087da7,
            #08a2b8
        ) !important;

    color: #ffffff !important;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 10px 22px rgba(8, 125, 167, 0.25);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        filter 0.2s ease;
}

.login-box .btn-primary:hover,
.login-box .btn-primary:focus {
    background:
        linear-gradient(
            135deg,
            #08749b,
            #0796ad
        ) !important;

    transform: translateY(-2px);

    box-shadow:
        0 14px 28px rgba(8, 125, 167, 0.32);

    outline: none !important;
}

.login-box .btn-primary:active {
    transform: translateY(0);

    box-shadow:
        0 7px 15px rgba(8, 125, 167, 0.22);
}


/* ----------------------------------------------------------
   ALERT
   ---------------------------------------------------------- */

.login-box .alert {
    margin-bottom: 20px;

    padding: 12px 14px;

    border: 0;

    border-radius: 11px;

    font-size: 12px;

    box-shadow:
        0 5px 15px rgba(0, 0, 0, 0.06);
}

.login-box .alert-danger {
    background: #fff1f1;

    color: #c0392b;
}


/* ----------------------------------------------------------
   ROW ALIGNMENT
   ---------------------------------------------------------- */

.login-box .row {
    margin-left: -5px;
    margin-right: -5px;
}

.login-box .row > [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px;
}


/* ----------------------------------------------------------
   REMOVE ADMINLTE DEFAULT EFFECTS
   ---------------------------------------------------------- */

.login-box .has-feedback .form-control {
    padding-right: 42px;
}

.login-box .btn-flat {
    border-radius: 12px !important;
}


/* ----------------------------------------------------------
   RESPONSIVE
   ---------------------------------------------------------- */

@media (max-width: 480px) {

    body.hold-transition {
        padding: 20px 12px;

        overflow-y: auto;
    }

    .login-box {
        width: 100% !important;

        max-width: 410px;
    }

    .login-box > .login-box-body {
        padding: 32px 25px 28px !important;

        border-radius: 20px !important;
    }

    .login-logo a {
        font-size: 27px !important;
    }

    .login-logo a::before {
        width: 43px;
        height: 43px;

        font-size: 18px;
    }

    .login-box .form-control {
        height: 50px !important;
    }

    .login-box .form-control-feedback {
        height: 50px !important;

        line-height: 50px !important;
    }
}


/* ----------------------------------------------------------
   SMALL HEIGHT SCREEN
   ---------------------------------------------------------- */

@media (max-height: 650px) {

    body.hold-transition {
        overflow-y: auto;

        padding-top: 25px;
        padding-bottom: 25px;
    }

    .login-box {
        margin-top: 15px !important;
        margin-bottom: 15px !important;
    }
}

