@import url('./bootstrap.min.css');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.13.1/font/bootstrap-icons.min.css");


html {
    scroll-behavior: smooth;
}

a,
a:hover,
a:active,
a:focus,
a:focus-visible {
    text-decoration: none;
    color: inherit;
}

body {
    font-family: "Inter", sans-serif;
    background-color: #ffffff;
    background-image: url('../images/body-bg-2.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    backdrop-filter: blur(15px);
}

.btn-style-1 {
    background-color: rgb(41, 41, 41);
    display: inline-block;
    padding: 15px;
    line-height: 1;
    color: white;
    font-size: 18px;
    border-radius: 15px;
    border: none;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.2s;
}

.btn-style-2 {
    background-color: rgb(231, 231, 231);
    display: inline-block;
    padding: 15px;
    line-height: 1;
    color: rgb(41, 41, 41);
    font-weight: 500;
    font-size: 18px;
    border-radius: 15px;
    border: none;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.2s;
}

.btn-style-3 {
    background-color: #e3eeff;
    display: inline-block;
    padding: 15px;
    line-height: 1;
    color: #0066fc;
    font-weight: 500;
    font-size: 18px;
    border-radius: 15px;
    border: none;
    letter-spacing: 1px;
    text-align: center;
    transition: all 0.2s;
}

.btn-style-2:hover {
    background-color: rgb(206, 206, 206);
    color: rgb(0, 0, 0);
    transition: all 0.2s;
}

.btn-style-1:hover {
    background-color: rgb(20, 20, 20);
    transition: all 0.2s;
}

.btn-style-3:hover {
    background-color: #cae0ff;
    color: #0050c9;
}

.full-shape {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 35vw;
    background: linear-gradient(180deg, #225bd3, #ee7f0f);
    /* clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%); */
}

.text-orange {
    color: #ee7f0f;
}

.text-blue {
    color: #1058e2;
}

.login-wrapper {
    padding: 50px;
    height: 100vh;
    overflow: auto;
}

.registration-wrapper {
    padding: 20px;
    min-height: 100vh;
}

/* .login-image img{object-fit: cover;object-position: center;} */

.login-image {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, #225bd3, #ee7f0f);
    border-radius: 20px;
}

    .login-image img {
        background-size: cover;
        background-position: center;
        border-radius: 20px;
    }

.login-slider {
    position: absolute;
    top: 0;
    bottom: 14%;
    z-index: -1;
}

    .login-slider .carousel-inner {
        height: 100%;
        border-radius: 20px;
    }

.login-logo img {
    width: 75px;
    height: 75px;
    margin-bottom: 4px;
}

.home-btn {
    background-color: #ffffff;
    color: #000000;
    padding: 7px 15px;
    display: inline-block;
    border-radius: 32px;
    box-shadow: -3px 3px 8px 1px #0000007a;
    transition: all 0.1s;
    position: absolute;
    bottom: 20px;
    left: 20px;
}

    .home-btn:hover {
        background-color: #ff8021;
        color: #ffffff;
        padding: 7px 15px;
        transition: all 0.2s;
    }

.login-box {
    padding: 20px;
    border-radius: 20px;
}

.login-content {
    padding: 15px 20px 0px 15px;
}


.logo-text span.st {
    color: #f19b19;
    font-size: 45px;
}

.register-logo p {
    width: 120px;
    border-left: 1px solid rgba(0, 0, 0, 0.24);
    padding-left: 15px;
    margin-left: 15px;
    font-size: 14px;
    line-height: 1.2;
}

.login-text {
    position: relative;
}

    .login-text h2 {
        font-size: 32px;
        font-weight: 700;
        position: relative;
        display: inline-block;
        width: auto;
        background: white;
        z-index: 1;
        padding: 0 10px;
        margin-bottom: 20px;
    }

    .login-text::after {
        position: absolute;
        content: '';
        left: 0;
        width: 100%;
        height: 1px;
        top: calc(50% - 1px);
        background-color: #b5b5b5;
    }

.captcha-container {
    display: flex;
}

    .captcha-container .captcha-img {
        height: 60px;
        width: 150px;
        border: var(--bs-border-width) solid var(--bs-border-color);
        border-radius: var(--bs-border-radius) 0 0 var(--bs-border-radius);
        margin-right: 0px;
        padding: 4px;
    }

.registration-form .captcha-container .captcha-img {
    width: calc(100% - 30px);
}

.captcha-container .captcha-img img {
    max-height: 50px;
    max-width: 99%;
}

.captcha-container .captha-input {
    width: calc(100% - 160px);
}

.captcha-container {
    gap: 15px;
}

.captcha-reload-btn button {
    display: block;
    background-color: #ebebeb;
    color: var(--color-1);
    padding: 10px 8px;
    height: 60px;
    border: var(--bs-border-width) solid #dee2e6;
    border-radius: 0 var(--bs-border-radius) var(--bs-border-radius) 0;
    display: flex;
    align-items: center;
}

    .captcha-reload-btn button:hover {
        background-color: #dee2e6;
        color: var(--semi-black);
    }

.link {
    color: #0d6efd;
}

    .link:hover {
        color: #0d6efd;
        text-decoration: underline;
    }

.copyright-text {
    font-size: 14px;
    color: rgb(80, 80, 80);
}

.fs-14 {
    font-size: 14px;
}

.registration-form {
    padding: 15px 15px 0 15px;
    border-radius: 12px;
    margin-bottom: 15px;
    background-color: #f2f2f2;
}

@media (min-width:320px) and (max-width:480px) {
    .full-shape {
        display: none;
    }

    .login-wrapper {
        padding: 10px 5px;
        height: auto;
    }

    .registration-wrapper {
        padding: 10px;
    }

    .captcha-container {
        flex-wrap: wrap;
    }

        .captcha-container .d-flex {
            width: 100%;
        }

        .captcha-container .captcha-img {
            width: calc(100% - 35px);
        }

        .captcha-container .captha-input {
            width: 100%;
        }

    .login-content {
        padding: 0;
    }

    .logo-text {
        margin-bottom: 5px;
        font-size: 40px;
    }

    .register-logo {
        flex-wrap: wrap;
    }

        .register-logo .logo-text {
            width: 100%;
            text-align: center;
            font-size: 36px;
            margin-bottom: 10px;
        }

        .register-logo p {
            padding-left: 0;
            margin-left: 0;
            border-left: 0;
            text-align: center;
            width: 100%;
            font-size: 16px !important;
        }

    .logo-text span.st {
        font-size: 36px;
    }

    .login-header p {
        font-size: 12px;
    }

    .login-text h2,
    .register-text h2 {
        font-size: 26px;
    }

    .fs-14.forgot-password {
        font-size: 16px;
    }

    .reg-link .link {
        font-size: 14px;
    }
}

@media (min-width:481px) and (max-width:575.98px) {
    .registration-wrapper {
        padding: 10px;
    }

    .full-shape {
        display: none;
    }

    .logo-text {
        font-size: 50px;
    }

        .logo-text span.st {
            font-size: 40px;
        }

    .register-logo {
        justify-content: center;
        width: 100%;
    }

        .register-logo .logo-text {
            font-size: 40px;
        }

    .login-header p {
        font-size: 14px;
    }

    .login-text h2,
    .register-text h2 {
        font-size: 30px;
    }

    .login-wrapper {
        padding: 20px;
        height: auto;
    }

    .login-content {
        padding: 0;
    }

    .login-wrapper .login-form {
        padding: 0 20px;
    }

    .fs-14.forgot-password {
        font-size: 16px;
    }

    .captcha-container .captcha-img {
        width: 130px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .full-shape {
        display: none;
    }

    .login-wrapper {
        padding: 25px 20px;
        height: auto;
    }

    .login-box {
        padding: 15px
    }

        .login-box .login-form {
            padding: 0 20px;
        }

    .login-content {
        padding: 10px 20px 5px 15px;
    }

    .logo-text {
        font-size: 50px;
    }

        .logo-text span.st {
            font-size: 40px;
        }

    .register-logo {
        justify-content: center;
        width: 100%;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .full-shape {
        display: none;
    }

    .login-wrapper {
        padding: 15px;
    }

    .register-logo p {
        width: 80px;
        padding-left: 8px;
        margin-left: 8px;
        font-size: 12px;
        line-height: 1.2;
    }

    .register-logo .logo-text {
        margin-bottom: 5px;
        font-size: 40px;
    }

        .register-logo .logo-text span.st {
            font-size: 32px;
        }
}
