* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Inter, sans-serif !important;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    background: #0E121B;
    background-image: url('../../images/gg.svg');
    background-repeat: no-repeat;
    background-position: top center;
    min-height: 100vh;
    position: relative;
}

.container {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
    gap: 80px;
    padding: 20px;
}

.logo {
    width: 200px;
    object-fit: contain;
    margin-bottom: 40px;
}

.container_left_title {
    font-family: Inter, Inter;
    font-weight: bold;
    font-size: 64px;
    line-height: 72px;
    text-align: left;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(90deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 32px;
}

.container_left_list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.container_left_list_item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.container_left_list_text {
    font-size: 14px;
    color: #CACFD8;
    line-height: 28px;
    text-align: left;
}

.container_left_list_item img {
    width: 24px;
    height: 24px;
}

.container_left_img {
    width: 556px;
    height: auto;
}

.card {
    background: #0E121B;
    border-radius: 20px 20px 20px 20px;
    border: 1px solid transparent;
    padding: 40px;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    padding: 1px;
    background: linear-gradient(360deg, rgba(76, 30, 227, 1), rgba(43, 48, 59, 1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn_white {
    width: 100%;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    color: #0E121B;
    line-height: 28px;
    text-align: center;
    background: #ffffff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 16px;
}

.btn_white:hover {
    background: #E5E8FF;
}

.divider {
    position: relative;
    text-align: center;
    margin: 16px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: #2B303B;
}

.divider-text {
    color: #6B7280;
    font-size: 14px;
    line-height: 24px;
    padding: 0 16px;
    white-space: nowrap;
}

.title {
    font-weight: bold;
    font-size: 32px;
    line-height: 40px;
    text-align: center;
    font-style: normal;
    text-transform: none;
    background: linear-gradient(180deg, #FFFFFF 0%, #99A0AE 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 32px;
}

.register-form {
    position: relative;
    z-index: 2;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.form-label {
    font-weight: normal;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 28px;
    text-align: left;
    margin-bottom: 4px;
}

.required {
    color: #EF4444;
    margin-left: 2px;
}

.form-input {
    width: 100%;
    max-width: 484px;
    padding: 14px 16px;
    background: rgba(30, 41, 59, 0.6);
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 400;
    outline: none;
    transition: all 0.2s ease;
    appearance: none;
    background: #0E121B;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid #2B303B;
}

.form-input::placeholder {
    color: #4B5563;
}


.form-input:hover {
    border-color: #6C52FF;
}

.form-input:focus {
    border-color: #6C52FF;
    outline: none;
}

.password-input-wrapper {
    position: relative;
}

.toggle-password {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #6B7280;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.toggle-password:hover {
    color: #9CA3AF;
    background: rgba(107, 114, 128, 0.2);
}

.toggle-password svg {
    width: 18px;
    height: 18px;
}

.eye-icon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background-image: url('../images/32.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.eye-icon.eye-open {
    background-image: url('../images/31.png');
}

.checkbox-group {
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.checkbox-label {
    font-size: 14px;
    color: #9185FF;
    line-height: 24px;
    text-align: left;
    cursor: pointer;
    transition: color 0.2s ease;
}

.checkbox-label:hover {
    color: #A78BFA;
    text-decoration: underline;
}

.submit-btn {
    width: 100%;
    padding: 15px 24px;
    background: #6C52FF;
    border: none;
    border-radius: 8px;
    color: #FFFFFF;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 24px;
}

.submit-btn:hover {
    background: #5A30F7;
}

.submit-btn:active {
    transform: translateY(0);
}

.login-link {
    text-align: center;
    font-size: 14px;
    color: #6B7280;
}

.login-link a {
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 14px;
    color: #9185FF;
    line-height: 24px;
}

.login-link a:hover {
    color: #A78BFA;
    text-decoration: underline;
}

@media (min-width: 1200px) {
    .card {
        width: 564px;
    }
}

@media (max-width: 1199px) {
    .container {
        gap: 40px;
    }

    .container_left_title {
        font-size: 48px;
        line-height: 56px;
    }

    .container_left_img {
        width: 450px;
    }
}

@media (max-width: 1024px) {
    .container_left_title {
        font-size: 40px;
        line-height: 48px;
    }

    .container_left_img {
        width: 380px;
    }

    .card {
        width: 90%;
        max-width: 520px;
        padding: 36px 32px;
    }
}

@media (max-width: 900px) {
    .container {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .container_left {
        text-align: center;
    }

    .container_left_list_item {
        justify-content: center;
    }

    .container_left_title {
        font-size: 36px;
        line-height: 44px;
        text-align: center;
    }

    .container_left_img {
        width: 350px;
    }

    .card {
        width: 100%;
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        padding: 20px;
    }

    .container_left {
        display: none;
    }

    .card {
        width: 100%;
        max-width: 480px;
        padding: 32px 28px;
        margin: 0 auto;
    }

    .logo {
        width: 130px;
        margin-bottom: 28px;
    }

    .title {
        font-size: 26px;
        line-height: 34px;
        margin-bottom: 24px;
    }

    .form-group {
        margin-bottom: 16px;
    }

    .form-label {
        font-size: 14px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .submit-btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    body {
        background-size: 100% auto;
    }

    .container {
        padding: 16px;
        align-items: center;
    }

    .card {
        width: 100%;
        padding: 28px 22px;
        border-radius: 16px;
    }

    .card::before {
        border-radius: 17px;
    }

    .logo {
        width: 120px;
        margin-bottom: 24px;
    }

    .title {
        font-size: 22px;
        line-height: 30px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-label {
        font-size: 14px;
        line-height: 22px;
    }

    .form-input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .checkbox-group {
        margin-bottom: 18px;
    }

    .checkbox-label {
        font-size: 13px;
    }

    .submit-btn {
        padding: 12px 18px;
        font-size: 14px;
        margin-bottom: 18px;
    }
}

@media (max-width: 480px) {
    body {
        background-position: top center;
        background-size: 200% auto;
    }

    .container {
        padding: 12px;
        padding-top: 40px;
        align-items: center;
    }

    .card {
        width: 100%;
        padding: 24px 18px;
        border-radius: 14px;
    }

    .card::before {
        border-radius: 15px;
    }

    .logo {
        width: 100px;
        margin-bottom: 20px;
    }

    .title {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 18px;
    }

    .form-group {
        margin-bottom: 12px;
    }

    .form-label {
        font-size: 13px;
        line-height: 20px;
        margin-bottom: 4px;
    }

    .form-input {
        padding: 10px 12px;
        font-size: 13px;
    }

    .toggle-password {
        right: 10px;
    }

    .checkbox-group {
        margin-bottom: 16px;
    }

    .checkbox-label {
        font-size: 12px;
    }

    .submit-btn {
        padding: 11px 16px;
        font-size: 13px;
        margin-bottom: 16px;
    }

    .login-link {
        font-size: 12px;
    }

    .login-link a {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .container {
        padding: 8px;
        padding-top: 30px;
    }

    .card {
        padding: 20px 14px;
    }

    .logo {
        width: 90px;
        margin-bottom: 16px;
    }

    .title {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 14px;
    }

    .form-input {
        padding: 9px 10px;
        font-size: 12px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .container {
        min-height: 100vh;
        padding: 20px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .container_left {
        display: none;
    }

    .logo {
        width: 100px;
        margin-bottom: 16px;
    }

    .card {
        padding: 24px 28px;
    }
}