﻿body {
    margin: 0;
    font-family: "Segoe UI", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.375;
    color: #384551;
    background-color: #f5f5f9;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(34, 48, 62, 0);
}

.login {
    height: 100vh;
    width: 100%;
    background: radial-gradient(#fcf5ff, #cfcfcf);
    position: relative;
}

.login_box {
    width: 1024px;
    height: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background: #fff;
    border-radius: 10px;
    box-shadow: 1px 4px 22px -8px #0004;
    display: flex;
    overflow: hidden;
}

    .login_box .left {
        width: 42%;
        height: 100%;
        padding: 25px 25px;
        position: relative;
    }

    .login_box .right {
        width: 58%;
        height: 100%
    }

.left .top_link a {
    color: #452A5A;
    font-weight: 400;
}

.left .contact {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    height: calc(100% - 80px);
    width: 85%;
    margin: auto;
}

.left .logo {
    height: 60px
}

.left h3 {
    text-align: center;
    margin-bottom: 40px;
}

.left input {
    --bs-input-border-color: color-mix(in sRGB, #22303e 22%, #fff);
    margin: 5px 0px;
    border: 1px solid var(--bs-input-border-color);
    border-radius: 6px;
    padding: 7px 9px;
    width: 100%;
    height: 40px;
    overflow: hidden;
    font-weight: 600;
    font-size: 14px;
}

.left .auth-input {
    font-size: 150%;
    max-inline-size: 50px;
    padding-inline: .4rem;
    border-radius: 7px
}

.left .form-control:focus {
    box-shadow: none;
    border-width: 2px
}

.h-px-50 {
    height: 50px !important;
}

.h-px-45 {
    height: 45px !important;
}

.loader-backdrop {
    position: absolute;
    top: 0;
    height: 100%;
    left: 0;
    background-color: #452b5a5c;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top_link img {
    width: 28px;
    padding-right: 7px;
    margin-top: -3px;
}

.loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite; /* Safari */
    animation: spin 2s linear infinite;
}
/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}


.authentication-wrapper {
    --bs-auth-basic-inner-max-width: 460px;
    display: flex;
    flex-basis: 100%;
    inline-size: 100%;
    min-block-size: 100vh;
}

.authentication-inner {
    inline-size: 100%;
}

.authentication-wrapper .authentication-bg {
    background-color: #fff;
}

.app-brand-logo.demo .logo {
    height: 35px
}

.app-brand {
    display: flex;
    flex-grow: 0;
    flex-shrink: 0;
    align-items: center;
}

.auth-cover-brand {
    position: absolute;
    z-index: 1;
    inset-block-start: 2.1rem;
    inset-inline-start: 2.5rem;
    text-decoration: none;
}

.app-brand-text.demo {
    font-size: 1.2rem;
    letter-spacing: -0.5px;
}

.app-brand .app-brand-text {
    opacity: 1;
    transition: opacity .3s ease-in-out;
}

.text-heading {
    color: #384551 !important;
}

.fw-bold {
    font-weight: 700 !important;
}

.mb-6 {
    margin-block-end: 1.5rem !important;
}

.my-7 {
    margin-block-start: 1.75rem !important;
    margin-block-end: 1.75rem !important;
}

.message-text, .message-valid-text {
    min-height: 20px;
}

.btn:not(:focus,:active) {
    box-shadow: var(--bs-btn-box-shadow);
}

.auth-input-wrapper input {
    width: 50px
}
