

/* Start:/login/style.css?17605329892914*/
/* main */
.auth-page {
    height: 100%;
    width: 100%;

    overflow: hidden;
}

.auth_wrapper {
    width: 300%;
    transition: all 0.5s;
}

.auth_wrapper[data-tab="1"] {
    transform: translateX(0%);
}

.auth_wrapper[data-tab="2"] {
    transform: translateX(-33.3333%);
}

.auth_wrapper[data-tab="3"] {
    transform: translateX(-66.6666%);
}

.auth_wrapper_item {
    width: 100%;
}

.auth-container {
    margin: 0 auto;
    overflow: hidden;
    max-width: min(580px, 100%);
    transition: max-height .4s ease;
}

.auth-forms {
    align-items: flex-start;
    transition: all 0.5s;
}

.tab-login {
    transform: translateX(0);
}

.tab-register {
    transform: translateX(-100%);
}

.auth_login {
    flex-shrink: 0;
    width: 100%;
}

.forgot-password-btn {
    border: none;
    cursor: pointer;
    background-color: var(--color-white);

    font-size: var(--fontsize-small);

    padding: 5px 0;
}

.auth_register {
    position: relative;
    flex-shrink: 0;
    width: 100%;
}

/* !main */

/* auth-container */
.auth-forms-header {
    padding: 10px 0;
    border-bottom: solid 1px var(--color-gray);
}

.auth-forms-header span {
    cursor: pointer;
}

.auth-action-login, .auth-action-register {
    color: var(--color-gray-stroke);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.auth-action-login.active, .auth-action-register.active {
    color: var(--color-text);
}

.auth-form-topline {
    position: absolute;
    height: 3px;
    top:-3px;
    width:50%;
    background-color: var(--color-text);
}

.auth-form-topline.login {
    left: -1px;
}

.auth-form-topline.register {
    right: -1px;
}

#register-modal .custom-checkbox>span {
    font-size: 12px;
}

.auth_login__footer-btns {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    width: min(380px, 100%);
    margin: 0 auto;
}

.login-on-phone-btn {
    display: none;
    border: none;
    cursor: pointer;
    background-color: var(--color-white);

    font-size: 14px;
    font-weight: 400;
    line-height: 17px;
    color: var(--color-fiolet);
    text-decoration: underline;


    padding: 30px 0;
}

.auth_login .custom-checkbox {
    font-size: 14px;
    font-weight: 400;
    line-height: 17px;

}

.auth_login .custom-checkbox__checkbox {
    width: 24px;
    height: 24px;
}


@media (max-width: 768px) {
    .auth-action-login, .auth-action-register {
        font-size: var(--fontsize-medium);
        font-weight: 800;
    }

    .auth-forms-header span {
        padding: 10px;
    }
}

@media (max-width: 468px) {
    .auth-action-login, .auth-action-register {
        font-size: var(--fontsize-very-small);
        font-weight: 800;
    }
}

/* !auth-container */


/* End */


/* Start:/local/templates/disma/components/bitrix/system.auth.forgotpasswd/disma/style.css?17252537331241*/
.forgotpasswd-container {
    max-width: 380px;
    margin: 0 auto;
    padding: 20px;
}

.forgotpasswd-container,
.forgotpasswd-header,
.forgotpasswd-body {
    gap: 20px;
    flex-direction: column;
}


.forgotpasswd-header>.title {
    font-weight: var(--fontweight-bold);
    font-size: 24px;
}

.forgotpasswd-header>.description,
.forgotpasswd-description {
    font-size: var(--fontsize-very-small);
}

.forgotpasswd-input {
    border: none;
    border-radius: 8px;
    padding: 17px 22px;
    background-color: var(--color-gray);
}

.forgotpasswd-label span{
    position: absolute;

    left: 15px;
    bottom: 3px;

    font-size: 10px;
    color: var(--color-red);
}

.forgotpasswd-button {
    cursor: pointer;
    border: none;
    border-radius: 8px;
    padding: 16px;

    color: white;
    background-color: var(--color-fiolet);
    
    font-size: var(--fontsize-big);
    font-weight: var(--fontweight-bold);
}


.forgotpasswd-button:active {
    background-color: var(--color-purple);
}

@media (hover: hover) {
    .forgotpasswd-button:hover {
        background-color: var(--color-purple);
    }
}

.forgotpasswd-button:disabled {
    cursor: not-allowed;
    opacity: 0.7;
    background-color: var(--color-fiolet);
}

/* End */


/* Start:/local/templates/disma/components/bitrix/system.auth.authorize/disma/style.css?17313941681561*/
.modal-window__inner {
    max-width: calc(100dvw - 32px);
    margin: 0 auto;
}

.modal-window__inner > form {
    padding-top: 48px;
}

.modal-window__inner [data-entity="form-rows"] {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: min(100%, 380px);
    margin: 0 auto;
}

.modal-window__row {
    position: relative;
    padding-inline: 1px;
}

.modal-window__row .modal-input {
    width: 100%;
    padding: 14px 30px 14px 14px;
    background-color: var(--color-gray-pink);
    border: solid 2px var(--color-gray);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 500;
    line-height: 14px;
    color: var(--color-text);
}

.modal-window__row .modal-input:focus-within {
    background-color: var(--color-gray);
    border-color: transparent;
}

.show_passwd {
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
}
.show_passwd svg {
    width: 100%;
    height: 100%;
}

.show_passwd.hidden {
    /* display: none; */
}

.show_passwd .show_passwd__icon_full {
    display: block;
}
.show_passwd .show_passwd__icon_stroke {
    display: none;
}

.show_passwd.active .show_passwd__icon_full {
    display: none;
}
.show_passwd.active .show_passwd__icon_stroke {
    display: block;
}

.btn-login {
    width: 100%;
}

.btn-login > .primary-btn {
    width: 100%;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
    text-align: center;
}

.modal-window__btn.btn-reg {
    display: none;
}

/* End */
/* /login/style.css?17605329892914 */
/* /local/templates/disma/components/bitrix/system.auth.forgotpasswd/disma/style.css?17252537331241 */
/* /local/templates/disma/components/bitrix/system.auth.authorize/disma/style.css?17313941681561 */
