.decoration {
    pointer-events: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.decoration img {
    width: 80px;
    position: absolute;
}

.decoration img:nth-child(1) {
    top: 0;
    left: 0;
}

.decoration img:nth-child(2) {
    bottom: 0;
    right: 0;
    transform: rotate(180deg);
}

.custom-button {
    width: auto;
    height: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    background-color: rgba(148, 95, 39, 0.785);
    position: relative;
    padding: 4px;
    transition: background-color 0.5s ease-in-out;
}

@media (max-width: 1440px) {
    .custom-button {
        height: 60px;
    }
}

.custom-button:hover {
    background-color: rgb(148, 95, 39);
}

.custom-button__text {
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    gap: 10px;
    padding: 0px 30px;
    transition: border 0.5s ease-in-out;
}

.custom-button__text:after, .custom-button__text:before {
    content: "";
    width: 19px;
    aspect-ratio: 19/17;
    display: block;
/*    background: url("../images/2.png");*/
    background-size: 100% 100%;
    opacity: 0.3;
    transition: opacity 0.5s ease-in-out;
}

.custom-button__text:after {
    transform: scaleX(-1);
}

.custom-button__text span {
    font-size: 24px;
    line-height: 1em;
    color: #fff;
    font-family: "HIT2";
    transform: translateY(4px);
    text-shadow: 0vh 0vh 10px rgba(255, 255, 255, 0.7);
    transition: text-shadow 0.5s ease-in-out;
    text-align: center;
}

@media (max-width: 680px) {
    .custom-button__text span {
        font-size: 20px;
    }
}

.custom-button:hover .custom-button__text {
    border: 1px solid rgb(255, 255, 255);
}

.custom-button:hover .custom-button__text:after, .custom-button:hover .custom-button__text:before {
    opacity: 1;
}

.custom-button:hover .custom-button__text span {
    text-shadow: 0vh 0vh 10px rgb(255, 255, 255);
}

.custom-button:after, .custom-button:before {
    content: "";
    width: 44px;
    aspect-ratio: 54/34;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: url("../images/1.png");
    background-size: 100% 100%;
}

.custom-button:after {
    left: -12px;
}

.custom-button:before {
    transform: translateY(-50%) scaleX(-1);
    right: -12px;
}

.custom-button--light {
    background-color: rgba(121, 98, 73, 0.5);
    transition: background-color 0.5s ease-in-out;
}

.custom-button--light:hover {
    background-color: rgb(121, 98, 73);
}

.custom-button--full {
    width: 100%;
}

.custom-button--small {
    height: 50px;
}

@media (max-width: 1440px) {
    .custom-button--small {
        height: 40px;
    }
}

.custom-button--small span {
    font-size: 16px;
}

@media (max-width: 1440px) {
    .custom-button--small span {
        font-size: 14px;
    }
}

.auth {
    width: 100%;
    padding: 50px 50px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

@media (max-width: 1440px) {
    .auth {
        padding: 30px 30px;
        gap: 30px;
    }
}

@media (max-width: 1024px) {
    .auth {
        padding: 20px;
    }
}

.auth__content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 50px;
}

@media (max-width: 1440px) {
    .auth__content {
        gap: 30px;
    }
}

.auth__col {
    width: calc((100% - 50px) / 2);
    position: relative;
    flex-grow: 1;
    background-color: #1F180D;
    border-radius: 0vh 20px 0vh 20px;
    border: 1px solid rgba(255, 255, 255, 0.241);
    box-shadow: 0vh 20px 50px rgba(0, 0, 0, 0.49);
}

@media (max-width: 1024px) {
    .auth__col {
        width: 100%;
    }
}

.auth__col-content {
    width: 100%;
    padding: 40px 40px;
}

@media (max-width: 1440px) {
    .auth__col-content {
        padding: 30px;
    }
}

.auth__col-content:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.241);
}

.auth__col-content--cols {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

@media (max-width: 1440px) {
    .auth__col-content--cols {
        gap: 30px;
    }
}

.auth__col-content--cols > * {
    width: calc((100% - 40px) / 2);
}

@media (max-width: 1440px) {
    .auth__col-content--cols > * {
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 680px) {
    .auth__col-content--cols > * {
        width: 100%;
    }
}

.auth__col--form {
    width: 440px;
    flex-grow: 0;
    background-color: #1F180D;
}

@media (max-width: 1440px) {
    .auth__col--form {
        width: 380px;
    }
}

@media (max-width: 1024px) {
    .auth__col--form {
        width: 100%;
    }
}

.auth__col--form .auth__col-content {
    padding: 40px 40px;
}

@media (max-width: 1440px) {
    .auth__col--form .auth__col-content {
        padding: 30px 30px;
    }
}

.auth__col--form .logo-link {
    margin: 0 auto 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth__col--form .logo-img {
    max-height: 100px;
}

.auth__col--form .footer__copyright-info {
    margin-top: 30px;
}

.auth__col-title {
    width: 100%;
    font-size: 40px;
    line-height: 1em;
    font-family: "HIT2";
    text-align: center;
}

@media (max-width: 1440px) {
    .auth__col-title {
        font-size: 30px;
    }
}

.auth__col-buttons {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    row-gap: 10px;
    column-gap: 20px;
}

.auth__col-buttons:not(:first-child) {
    margin-top: 20px;
}

.auth__col-buttons--1 a {
    width: 100%;
}

.auth__col-buttons--2 a {
    width: calc((100% - 20px) / 2);
}

@media (max-width: 560px) {
    .auth__col-buttons--2 a {
        width: 100%;
    }
}

.auth__col-buttons--3 a {
    width: calc((100% - 40px) / 3);
}

@media (max-width: 680px) {
    .auth__col-buttons--3 a {
        width: calc((100% - 20px) / 2);
    }
}

@media (max-width: 560px) {
    .auth__col-buttons--3 a {
        width: 100%;
    }
}

.auth__col-text {
    width: 100%;
    font-size: 16px;
    line-height: 1.4em;
}

.auth__col-text:not(:first-child) {
    margin-top: 20px;
}

.auth__col-text--center {
    text-align: center;
}

.auth__col-text p {
    padding: 0;
    margin: 0;
}

.auth__col-text .text-primary {
    color: #dfa468 !important;
}

.auth__col-text > *:not(:first-child) {
    margin-top: 5px;
}

.auth__patch-title {
    width: 100%;
    font-size: 24px;
    line-height: 1em;
    font-family: "HIT2";
}

.auth__video {
    aspect-ratio: 1/0.56;
    border: 1px solid rgba(255, 255, 255, 0.241);
    position: relative;
    display: flex;
    margin-bottom: auto;
    padding: 4px;
}

.auth__systems {
    width: 100%;
    margin-top: 40px;
}

@media (max-width: 1440px) {
    .auth__systems {
        margin-top: 30px;
    }
}

.auth__systems-title {
    width: 100%;
    font-size: 24px;
    line-height: 1em;
    font-family: "HIT2";
    text-align: center;
    margin-bottom: 20px;
}

.auth__systems table {
    width: 100%;
    border-radius: 10px;
}

.auth__systems table tbody {
    border-radius: 10px;
}

.auth__systems table tr:not(:last-child) th, .auth__systems table tr:not(:last-child) td {
    border-bottom: 1px solid #4b4031;
}

.auth__systems table tr:last-child th:first-child, .auth__systems table tr:last-child td:first-child {
    border-bottom-left-radius: 10px;
}

.auth__systems table tr:last-child th:last-child, .auth__systems table tr:last-child td:last-child {
    border-bottom-right-radius: 10px;
}

.auth__systems table tr:first-child th:first-child, .auth__systems table tr:first-child td:first-child {
    border-top-left-radius: 10px;
}

.auth__systems table tr:first-child th:last-child, .auth__systems table tr:first-child td:last-child {
    border-top-right-radius: 10px;
}

.auth__systems table th, .auth__systems table td {
    padding: 10px 20px;
}

.auth__systems table th:not(:last-child), .auth__systems table td:not(:last-child) {
    border-right: 1px solid #4b4031;
}

.auth__systems table td {
    color: #b7a58d;
    background-color: #2B2212;
}

.auth__systems table th {
    color: #fff;
    background-color: #45361D;
    border-bottom: 1px solid #2B2212 !important;
    font-family: "HIT2";
    font-size: 18px;
    font-weight: 400;
}

.auth__systems table th span {
    display: block;
    padding-top: 5px;
}

.auth__faq {
    width: 100%;
    margin-top: 20px;
}

.auth__faq .spoiler:not(:first-child) {
    margin-top: 20px;
}

@media (max-width: 1440px) {
    .auth__faq .spoiler:not(:first-child) {
        margin-top: 10px;
    }
}

.spoiler {
    width: 100%;
    border-left: 2px solid var(--brand-color);
}

.spoiler__title {
    width: 100%;
    padding: 20px 40px 16px 20px;
    background-color: #413625;
    font-family: "HIT2";
    font-size: 18px;
    line-height: 18px;
    color: #fff;
    cursor: pointer;
    position: relative;
    border-radius: 10px;
    transition: background-color 0.3s ease-in-out;
    border: 1px solid #4b3e2b;
}

@media (max-width: 1440px) {
    .spoiler__title {
        font-size: 16px;
        line-height: 16px;
        padding: 20px 40px 14px 20px;
    }
}

.spoiler__title:hover {
    background-color: #4b3e2b;
}

.spoiler__title:before {
    content: "";
    display: block;
    width: 14px;
    height: 12px;
    position: absolute;
    top: calc((100% - 12px) / 2);
    right: 20px;
    background: url("../images/2.png") center center no-repeat;
    background-size: 100% 100%;
    transform: rotate(-90deg);
    transition: transform 0.3s ease-in-out;
}

.spoiler.active > .spoiler__title:before {
    transform: rotate(90deg);
}

.spoiler__content {
    width: 100%;
    padding: 20px;
    display: none;
    border-radius: 10px;
    background-color: rgba(28, 25, 19, 0.653);
    margin-top: 4px;
}
