@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
    --main-color: #B1B7D6;
    --primary-color: #6b7083;
}

html {
    scroll-behavior: smooth;
    overflow: hidden;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background-color: var(--main-color);
}

::-webkit-scrollbar-track {
    background: transparent;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;

    /* border: 1px solid rgb(114, 114, 114); */
}

body {
    background: black;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    box-sizing: border-box;
    color: white;
}

a {
    color: var(--main-color);
    text-decoration: none;
}

.container {
    width: 100vw;
    height: 100vh;

    display: flex;
    flex-direction: row;
}

.container__banner {
    height: 100%;
    min-width: 700px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 25px;

    background: #0d0d0d;
}

.container__banner h2 {
    color: var(--main-color);
    text-align: center;
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
}

.container__banner p {
    width: 604px;

    margin-top: 10px;
    color: #999;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
}

.container__form {
    width: 100%;
    height: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.container__form h3 {
    text-align: left;
    max-width: 583px;
    width: 100%;
    color: #FFF;
    font-size: 38px;
    font-style: normal;
    font-weight: 600;
}

.container__form .form {
    margin-top: 35px;

    max-width: 583px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.container__form .form .input_group input {
    background: transparent;
    border: 1px solid #3A3A3A;
    border-radius: 12px;

    width: 100%;
    height: 40px;
    padding: 25px 20px;

    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    outline: none;
}

.container__form .form .input_group input#password[type="password"]  {
    padding-right: 85px;
}

.container__form .form .input_group input#password[type="text"]  {
    padding-right: 89px;
}

.container__form .form .input_group input::placeholder {
    color: #737373;
}

.container__form .form .input_group input:hover {
    background: #242424;
}

.container__form .form .input_group .show {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

.container__form .form .input_group#password-container {
    position: relative;
}

.container__form .form .input_subgroup .check_password_lines {
    display: inline-flex;
    width: 100%;
    margin: 15px 0;
}

.container__form .form .input_subgroup .check_password_lines .red_line,
.container__form .form .input_subgroup .check_password_lines .yellow_line,
.container__form .form .input_subgroup .check_password_lines .green_line,
.container__form .form .input_subgroup .check_password_lines .blue_line {
    margin-right: 10px;
    width: 100%;
    height: 6px;
    background-color: rgba(255, 255, 255, 0.10);
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.container__form .form .input_subgroup .check_password_lines .blue_line {
    margin-right: 0;
}

.container__form .form .input_subgroup p {
    color: #737373;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
}

.container__form .form .input_group__hide {
    position: relative;
}

.container__form .form .input_group__hide .hide__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #737373;
}

.container__form .form .input_group__hide .hide__title:hover {
    color: #737373;
}

.container__form .form .input_group__hide .hide {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
    position: relative;
    top: 15px;
}

.container__form .form .input_group__hide .hide.active {
    max-height: 200px;
}

.container__form .form .input_group__hide .hide__title .arrow {
    transition: transform 0.5s ease;
}

.container__form .form .input_group__hide .hide__title .arrow.active {
    transform: rotate(180deg);
}

.container__form .form .input_group__hide .input_group {
    width: 100%;
}

.container__form .form .input_group.agree {
    display: flex;
    align-items: center;
    color: #737373;
    gap: 10px;
}

.container__form .form .input_group.agree p {
    font-size: 18px;
}

.container__form .form .input_group input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    max-width: 24px;
    max-height: 24px;
    border-radius: 50%;
    outline: none;
    border: 2px solid #3A3A3A;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.container__form .form .input_group input[type="checkbox"]:checked {
    background-color: #B1B7D6;
    border: none;
}

.container__form .form .input_group input[type="checkbox"]:checked::before {
    content: '';
    background-image: url(/assets/img/check.svg);
    position: absolute;
    top: 50%;
    left: 50%;
    width: 13px;
    height: 10px;
    transform: translate(-50%, -50%);
}

.container__form .form .form__button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 15px;
}

.container__form .form .form__button button {
    width: 100%;
    height: 50px;

    border-radius: 15px;
    background: var(--main-color);

    border: none;
    outline: none;
    color: #252525;

    font-size: 18px;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-weight: 500;

    transition: .3s ease background;
}

.container__form .form .form__button button:disabled {
    background: #252525;
    color: #848484;
}

.container__form .form .form__button button:disabled:hover {
    background: #252525;
    cursor: no-drop;
}

.container__form .form .form__button button:hover {
    background: var(--primary-color);
    cursor: pointer;
}

.container__form .form .form__button p {
    color: white;
    text-align: center;
}

.container__form .form .form_medium {
    margin-top: 15px;
    display: inline-flex;
    color: white;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.container__form .form .form_medium p {
    color: #646464;
}

.container__form .form .form_medium .form_divide {
    width: 37%;
    height: 1px;
    background: #3A3A3A;
}

.container__form .form .form__social_login {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.container__form .form .form__social_login .item {
    width: 64px;
    height: 64px;
    border-radius: 32px;
    background: #252525;
    transition: .3s ease background;

    display: flex;
    justify-content: center;
    align-items: center;
}

.container__form .form .form__social_login .item:hover {
    background: #333333;
    cursor: pointer;
}

@media (max-width: 1360px) {
    .container__banner {
        display: none;
    }
    .container__form {
        padding: 15px;
    }
}

@media (max-width: 450px) {
    .container__form .form .form_medium .form_divide {
        width: 25%;
    }

    .container__form h3 {
        font-size: 32px;
    }
}