.login-form-container {
    width: 600px;
    max-width: 100vw;
    padding: 50px;
    transition: width 0.2s cubic-bezier(.9, 0, .22, 1);
    box-sizing: border-box;
}

.register-form-container {
    width: 800px;
    max-width: 100vw;
    padding: 50px;
    transition: width 0.6s cubic-bezier(.9, 0, .22, 1);
    box-sizing: border-box;
    /*overflow-y: auto;*/
    scrollbar-width: thin;
    scrollbar-color: rgba(150, 150, 150, 0.3) transparent;
}

.register-form-container::-webkit-scrollbar {
    width: 4px;
}

.register-form-container::-webkit-scrollbar-track {
    background: transparent;
}

.register-form-container::-webkit-scrollbar-thumb {
    background-color: rgba(150, 150, 150, 0.4);
    border-radius: 10px;
}

.register-form-container::-webkit-scrollbar-thumb:hover {
    background-color: rgba(150, 150, 150, 0.6);
}


.login-form-container.full-width {
    width: 100vw;
}

.register-form-container.full-width {
    width: 100vw;
}

@media (max-width: 770px) {
    .login-form-container {
        width: 100vw !important;
        transition: none !important;
        padding: 24px;
    }

    .login-form-container.full-width {
        width: 100vw !important;
    }
}

.step {
    opacity: 0;
    transform: translate(-15px, -15px);
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.step.active-step {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    position: relative;
}

#multiStepFormContainer {
    position: relative;
}

#authImageColumn.fade-out {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(.9, 0, .22, 1);
}

#authFormColumn.full-width {
    width: 100% !important;
}

.top-logo {
    max-width: 250px;
    position: absolute;
    top: 50px;
    left: 40px;
}


.top-logo-1 {
    max-width: 250px;
}

.login-image {
    background-size: cover;
    background-position: center;
}

h1 {
    font-size: 2.5rem;
    color: #01295F;
}

p.text-muted {
    color: #6c757d;
    font-weight: 300;
    font-size: 16px;
}

.btn-primary {
    background-color: #0B1F3F;
    border-color: #0B1F3F;
}

a {
    color: #21A0A0;
    text-decoration: underline !important;
    font-weight: 300;
}

a:hover {
    color: #0B95C1;
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: #0B1F3F;
    border-color: #0B1F3F;
}

.form-label, .form-check-label {
    font-size: 16px;
    font-weight: 500;
    color: #5E5E5E;
    margin-bottom: 4px !important;
}

.form-check-label {
    font-weight: 300;
}

.form-control {
    border: 1px solid #D4D4D4;
    border-radius: 5px;
    height: 45px;
    font-size: 14px;
    font-weight: 400 !important;
}

.form-control::placeholder {
    color: #5E5E5E70;
}

.btn-primary {
    padding: 12px 0;
    background-color: var(--color-primary);
    font-weight: 700;
}

.btn-primary:hover {
    background-color: var(--color-accent);
}

.color-muted {
    color: #5E5E5E;
    font-weight: 400;
}

body {
    background-color: var(--color-background-2) !important;
}

.navigation-buttons > button {
    min-width: 120px;
    width: 25%;
    max-width: 226px;
}

.loading-overlay,
.popup-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.loading-overlay.active,
.popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.popup-box {
    background: #fff;
    padding: 30px 40px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    max-width: 98%;
    width: 800px;
}

h6 {
    line-height: 1.5;
}

.popup-box img {
    max-width: 200px;
    margin-bottom: 30px;
}

.popup-box h4 {
    margin-bottom: 15px;
    color: #01295F;
}

.popup-box p {
    color: #555;
    margin-bottom: 20px;
}
