﻿body {
    margin: 0;
    padding: 0;
    background: #d8d8d8 !important;
    font-family: 'Poppins', sans-serif;
}

.login-page-full {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 24px 16px;
    background: #d8d8d8;
}

    /* Full-bleed slider behind the form */
    .login-page-full > .login-image {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 0;
        overflow: hidden;
        margin: 0;
    }

        .login-page-full > .login-image > ul {
            margin: 0;
            padding: 0;
            height: 100%;
            min-height: 100vh;
        }

        .login-page-full > .login-image .owl-carousel,
        .login-page-full > .login-image .owl-stage-outer,
        .login-page-full > .login-image .owl-stage,
        .login-page-full > .login-image .owl-item {
            height: 100%;
            min-height: 100vh;
        }

        .login-page-full > .login-image li,
        .login-page-full > .login-image li > a {
            display: block;
            height: 100%;
            min-height: 100vh;
        }

        .login-page-full > .login-image img {
            -webkit-user-select: none;
            -moz-user-select: none;
            user-select: none;
            display: block;
            width: 100%;
            height: 100%;
            min-height: 100vh;
            -o-object-fit: cover;
            object-fit: cover;
        }

    /* Readability overlay between photo and card */
    .login-page-full::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        pointer-events: none;
        background: rgba(216, 216, 216, 0.85);
    }

    .login-page-full > .login-content {
        position: relative;
        z-index: 2;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
        width: 100%;
        max-width: 370px;
        margin: 0 auto;
        padding: 1.6rem 1rem 1.2rem;
        min-height: 0;
        background: #efefef;
        border-radius: 0;
        border-top: 6px solid #ee7d03;
        -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

        .login-page-full > .login-content > form {
            display: block;
            width: 100%;
        }

            .login-page-full > .login-content > form > .login-logo {
                display: block;
                width: 100%;
                margin-bottom: 5px;
                text-align: center;
            }

                .login-page-full > .login-content > form > .login-logo > img {
                    width: auto;
                    height: auto;
                    max-height: 85px;
                }

            .login-page-full > .login-content > form > .login-text {
                display: block;
                width: 100%;
                font-size: 18px;
                font-weight: 500;
                color: #333333;
                letter-spacing: 0.3px;
                text-align: center;
                margin-bottom: 14px;
            }

            .login-page-full > .login-content > form > .form-field {
                position: relative;
                padding: 0;
                margin-top: 8px;
            }

            .login-page-full > .login-content > form > .form-field {
                display: block;
                width: 100%;
                position: relative;
            }

                .login-page-full > .login-content > form > .form-field:not(:last-of-type) {
                    margin-bottom: 10px;
                }

                .login-page-full > .login-content > form > .form-field .forms_field-input {
                    font-family: "Poppins", sans-serif;
                    width: 100%;
                    border: 1px solid #d0d0d0;
                    outline: 0;
                    font-size: 18px;
                    color: #222;
                    padding: 8px 12px;
                    background: #e3eaf5;
                    transition: border-color 0.2s, background-color 0.2s;
                    margin-top: 0 !important;
                    min-height: 38px;
                }

                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:hover,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:focus,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:active {
                        -webkit-box-shadow: 0 0 0 30px white inset !important;
                    }

                    .login-page-full > .login-content > form > .form-field .forms_field-input::placeholder {
                        color: transparent;
                    }

                    .login-page-full > .login-content > form > .form-field .forms_field-input:placeholder-shown ~ .form-label {
                        font-size: 15px;
                        cursor: text;
                        top: 30px;
                    }

                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill ~ .form-label,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:hover ~ .form-label,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:focus ~ .form-label,
                    .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:active ~ .form-label {
                        font-size: 15px;
                        cursor: text;
                        top: 0px;
                    }


                .login-page-full > .login-content > form > .form-field .form-label {
                    position: absolute;
                    top: -18px;
                    display: block;
                    transition: 0.2s;
                    font-size: 14px;
                    color: #777;
                    font-weight: 500;
                    user-select: none;
                    z-index: 1;
                }

                .login-page-full > .login-content > form > .form-field .forms_field-input:focus {
                    font-weight: 500;
                    border-color: #ee7d03;
                    background: #d7deea;
                }

                .login-page-full > .login-content > form > .form-field .forms_field-input:autofill,
                .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill,
                .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:hover,
                .login-page-full > .login-content > form > .form-field .forms_field-input:-webkit-autofill:focus {
                    -webkit-box-shadow: 0 0 0 30px white inset !important;
                }

                .login-page-full > .login-content > form > .form-field .forms_field-input:focus ~ .form-label {
                    position: absolute;
                    top: -18px;
                    display: block;
                    transition: 0.2s;
                    font-size: 14px;
                    color: #555;
                    font-weight: 500;
                    margin: 0;
                }


            .login-page-full > .login-content > form > .form-button {
                display: block;
                width: 100%;
                margin-top: 14px;
                margin-bottom: 8px;
                padding-top: 10px;
                border-top: 1px solid #d8d8d8;
            }

                .login-page-full > .login-content > form > .form-button > button {
                    background: #000000;
                    width: 100%;
                    display: block;
                    padding: 10px;
                    text-align: center;
                    border-radius: 2px;
                    color: #ffffff;
                    font-size: 16px;
                    font-weight: 500;
                    transition: 0.3s;
                    border: 0;
                    cursor: pointer;
                }

                    .login-page-full > .login-content > form > .form-button > button:hover {
                        background: #2d2c2c;
                    }

                .login-page-full > .login-content > form > .form-button > a {
                    display: block;
                    margin-top: 15px;
                    text-align: center;
                    color: #808080;
                    text-decoration: none;
                }

                    .login-page-full > .login-content > form > .form-button > a:hover {
                        color: #333333;
                    }

        .login-page-full > .login-content > .captcha-full {
            display: -webkit-box;
            display: -ms-flexbox;
            display: flex;
            flex-direction: row;
            width: 100%;
            align-items: center;
            justify-content: space-between;
            padding: 10px 0;
        }

            .login-page-full > .login-content > .captcha-full input {
                font-weight: 500;
                border: 0;
                border: 1px solid #ef7c00;
            }



.captcha-margin .captcha-full {
    display: flex;
    width: 100%;
    justify-content: center;
}

.col-captcha input {
    min-height: 42px;
    margin: 1px;
}

.login-content .footer-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: row;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 0.9rem 0 0;
    margin-top: 0.3rem;
    z-index: 1;
}

    .login-content .footer-logo > span:first-child > img {
        width: 140px;
        height: auto;
    }

    .login-content .footer-logo span:last-child {
        font-size: 15px;
        color: #404040;
    }


@media only screen and (max-width : 992px) {
    .login-page-full {
        padding: 16px 12px;
        padding-top: max(16px, env(safe-area-inset-top));
        padding-bottom: max(16px, env(safe-area-inset-bottom));
    }

        .login-page-full > .login-image {
            position: fixed;
        }

        .login-page-full > .login-content {
            max-width: 100%;
            padding: 1.25rem 0.9rem 1rem;
        }

    .login-content .footer-logo {
        padding: 1rem 0 0;
        margin-top: 0.25rem;
    }
}

@media only screen and (max-width : 480px) {
    .login-page-full > .login-content {
        padding: 1.15rem 0.75rem 0.9rem;
    }

        .login-page-full > .login-content > form > .login-text {
            font-size: 10px;
        }
}

@media only screen and (max-width : 1024px) {
    .login-content .footer-logo span:last-child {
        font-size: 11px;
    }
}

/* Login template style (icon + input-group based) */
.login-page-full > .login-content > form hr {
    margin: 10px auto 14px;
    width: 100%;
    border-top: 1px solid #dddbda;
    border-bottom: 1px solid #fff;
}

.login-page-full > .login-content > form .textbox-wrap {
    padding: 0;
    margin: 0 0 12px;
    border-left: 5px solid transparent;
}

.login-page-full > .login-content > form .textbox-wrap .input-group {
    margin-bottom: 0;
    width: 100%;
}

.login-page-full > .login-content > form .textbox-wrap .input-group .input-group-addon {
    min-width: 32px;
    border-radius: 0;
    border: 1px solid #d0d0d0;
    border-right: 0;
    background: #f5f5f5;
    color: #ee7d03;
}

.login-page-full > .login-content > form .textbox-wrap .input-group .input-group-addon i {
    color: #ee7d03;
}

    .login-page-full > .login-content > form .textbox-wrap .input-group .form-control.login-input {
        border-radius: 0;
        border: 1px solid #d0d0d0;
        box-shadow: none;
        height: 38px;
        background: #e0e8f5;
        color: #333;
        font-size: 14px;
    }

.login-page-full > .login-content > form .textbox-wrap .input-group .form-control.login-input:focus,
.login-page-full > .login-content > form .textbox-wrap .input-group .form-control.login-input:active,
.login-page-full > .login-content > form .textbox-wrap .input-group .form-control.login-input:hover {
    border-color: #ee7d03;
    box-shadow: none;
    background: #d7deea;
}

.captcha-margin .captcha-full .col-captcha .input-group {
    width: 100%;
}
