.logo-wrap {
    width: 52px;
    height: auto;
}

.logo-wrap img {
    width: inherit;
    height: inherit;
    object-fit: contain;
}

.hub-logo-wrap {
    width: 100px;
}

.header {
    background-color: var(--blue-tint-1);
}

.user-header {
    background-color: var(--white);
    box-shadow: 0px 4px 20px 0px #23346c14;
}

.navbar-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

.link-wrap {
    display: flex;
    align-items: center;
}

.header-link {
    font-size: var(--font-18);
    font-weight: 600;
    color: var(--gray);
    text-decoration: none;
    transition: 0.3s all;
}

.header-link:not(:last-child) {
    margin-right: var(--size-42);
}

.auth-page-wrap {
    display: flex;
    flex-direction: column;
    height: 100vh;
    height: 100svh;
}

.auth-content-wrap {
    padding: var(--size-32) 0;
}

.auth-content-wrap .container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.auth-subtitle {
    color: var(--gray-tint-1);
}

.auth-subtitle span {
    color: var(--black-shade-1);
}

.auth-form {
    margin-top: var(--size-64);
    max-width: 420px;
    width: 100%;
}

.auth-form .form-label {
    font-size: var(--font-16);
    font-weight: 600;
    color: #a9a9a9;
}

.auth-form .form-control {
    padding: var(--size-12) var(--size-16);
    border: 1px solid var(--blue-tint-2);
    border-radius: var(--size-12);
    font-size: var(--font-16);
    font-weight: 600;
    color: var(--black-shade-1);
    height: 48px;
}

.auth-form .form-control:focus {
    box-shadow: none;
    border-color: var(--blue);
}

.password-toggle {
    position: absolute;
    top: 50%;
    right: var(--size-16);
    transform: translateY(-50%);
    color: var(--gray-tint-2);
}

.password-toggle i {
    width: 24px;
    height: 24px;
}

.auth-text-space {
    margin-top: var(--size-32);
}

.auth-bottom-text {
    font-size: var(--font-16);
    color: #a9a9a9;
}

.auth-link {
    color: var(--blue);
    text-decoration: none;
    transition: 0.3s all;
}

.input-space {
    margin-bottom: var(--size-12);
}

.auth-title-wrap .auth-subtitle {
    max-width: 450px;
}

.otp-input-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.otp-input-wrap input {
    text-align: center;
    width: 62px;
    height: 58px;
    border: 1px solid var(--blue-tint-2);
    border-radius: var(--size-12);
    font-size: var(--font-24);
    font-weight: 600;
    color: var(--black-shade-1);
}

.otp-input-wrap input:focus {
    border-color: var(--blue);
    outline: none;
}

.otp-label {
    font-size: var(--font-16);
    color: var(--gray-tint-1);
    margin-bottom: var(--size-12);
}

.join-business {
    margin-right: calc(var(--size-16) + var(--size-8));
}

.nav_logo_header {
    height: 64px;
    width: 64px;
}
@media (max-width: 1439px) {
    .otp-input-wrap input {
        width: 58px;
        height: 54px;
    }
}

@media (max-width: 767px) {
    .auth-form .form-control {
        height: 44px;
    }

    .otp-input-wrap input {
        width: 50px;
        height: 46px;
    }
}

@media (max-width: 575px) {
    .auth-form {
        max-width: unset;
    }

    .user-logo-wrap {
        width: 35px;
        height: 35px;
    }
}

@media (max-width: 480px) {
    .auth-form .form-control {
        height: 40px;
    }

    .otp-input-wrap input {
        width: 42px;
        height: 38px;
    }
}
