/* ==== REGISTER PAGE STYLES ==== */
.register_dashboard {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-family: "Inter", sans-serif;
    width: 100%;
    min-height: calc(100vh - 200px);
}

.register_container {
    width: 100%;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* ==== REGISTER CARD ==== */
.register_card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(234, 236, 239, 0.08);
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.register_header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    text-align: center;
}

.register_title {
    color: var(--Silver-White, #eaecef);
    font-family: Montserrat;
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
    margin: 0;
}

.register_subtitle {
    color: var(--Muted-Gray, #8b949e);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}

/* ==== ALERT/HINT BOX ==== */
.register_hint {
    display: flex;
    padding: 16px;
    gap: 12px;
    border-radius: 12px;
    background: rgba(240, 137, 11, 0.1);
    border: 1px solid rgba(240, 137, 11, 0.2);
}

.register_hint::before {
    content: "ℹ";
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(240, 137, 11, 0.2);
    color: var(--Binance-Yellow, #f0890b);
    font-weight: 700;
    font-size: 16px;
}

.register_hint_text {
    color: var(--Silver-White, #eaecef);
    font-family: Inter;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

/* ==== FORM STYLES ==== */
.register_form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.register_form_group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.register_form_label {
    color: var(--Silver-White, #eaecef);
    font-family: Montserrat;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.register_form_label_required {
    color: #ff3358;
}

.register_info_icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(139, 148, 158, 0.2);
    color: var(--Muted-Gray, #8b949e);
    font-size: 11px;
    font-weight: 700;
    cursor: help;
    transition: all 0.2s ease;
}

.register_info_icon:hover {
    background: rgba(240, 137, 11, 0.2);
    color: var(--Binance-Yellow, #f0890b);
}

.register_form_input {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    display: flex;
    padding: 12px 16px;
    align-items: center;
    border-radius: 32px;
    background: var(--Night-Black, #0b0e11);
    color: var(--Silver-White, #eaecef);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    outline: none;
    transition: all 0.2s ease;
}

.register_form_input:focus {
    border-color: #f0890b;
    background: var(--Graphite-Gray, #1e2329);
    box-shadow: 0 0 0 3px rgba(240, 137, 11, 0.1);
}

.register_form_input::placeholder {
    color: var(--Muted-Gray, #8b949e);
}

.register_form_input:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ==== CHECKBOXES ==== */
.register_agreements {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
}

.register_checkbox_group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.register_checkbox {
    flex-shrink: 0;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(234, 236, 239, 0.2);
    background: var(--Night-Black, #0b0e11);
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin-top: 2px;
}

.register_checkbox:checked {
    background: linear-gradient(90deg, #f0890b 0%, #ff3358 100%);
    border-color: #f0890b;
}

.register_checkbox:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.register_checkbox:hover {
    border-color: rgba(240, 137, 11, 0.5);
}

.register_checkbox_label {
    flex: 1;
    color: var(--Muted-Gray, #8b949e);
    font-family: Inter;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    cursor: pointer;
}

.register_checkbox_label a {
    color: var(--Binance-Yellow, #f0890b);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.register_checkbox_label a:hover {
    color: #ff9a1f;
}

/* ==== COMMENTS/NOTES ==== */
.register_note {
    color: var(--Muted-Gray, #8b949e);
    font-family: Inter;
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
    padding: 12px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    margin: 0;
}

.register_note b,
.register_note strong {
    color: var(--Silver-White, #eaecef);
    font-weight: 600;
}

/* ==== ERROR MESSAGES ==== */
.register_error {
    color: #ff3358;
    font-family: Inter;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
    padding: 12px 16px;
    border-radius: 8px;
    background: rgba(255, 51, 88, 0.1);
    border: 1px solid rgba(255, 51, 88, 0.2);
}

/* ==== SUBMIT BUTTON ==== */
.register_submit_btn {
    display: flex;
    height: 48px;
    padding: 0 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 32px;
    border: none;
    background: linear-gradient(90deg, #f0890b 0%, #ff3358 100%);
    color: #fff !important;
    font-family: Montserrat;
    font-size: 15px;
    font-weight: 700;
    line-height: 22px;
    text-transform: capitalize;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(240, 137, 11, 0.3);
}

.register_submit_btn:hover {
    box-shadow: 0 8px 24px rgba(240, 137, 11, 0.5);
    transform: translateY(-2px);
}

.register_submit_btn:active {
    transform: translateY(0);
}

.register_submit_btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* ==== FOOTER LINKS ==== */
.register_footer {
    text-align: center;
    padding: 16px;
}

.register_footer_text {
    color: var(--Muted-Gray, #8b949e);
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    margin: 0;
}

.register_footer_link {
    color: var(--Binance-Yellow, #f0890b);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.register_footer_link:hover {
    color: #ff9a1f;
    text-decoration: underline;
}

/* ==== RESPONSIVE STYLES ==== */

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .register_card {
        padding: 32px;
    }

    .register_title {
        font-size: 26px;
        line-height: 34px;
    }
}

/* Mobile landscape and large phones (481px - 767px) */
@media (max-width: 767px) {
    .register_dashboard {
        padding: 0 16px;
        min-height: auto;
    }

    .register_card {
        padding: 28px 24px;
        gap: 20px;
    }

    .register_title {
        font-size: 24px;
        line-height: 32px;
    }

    .register_subtitle {
        font-size: 13px;
        line-height: 19px;
    }

    .register_form {
        gap: 16px;
    }

    .register_hint {
        padding: 14px;
    }

    .register_hint_text {
        font-size: 12px;
        line-height: 18px;
    }
}

/* Mobile portrait (320px - 480px) */
@media (max-width: 480px) {
    .register_dashboard {
        padding: 0 12px;
    }

    .register_card {
        padding: 24px 20px;
        gap: 18px;
    }

    .register_title {
        font-size: 22px;
        line-height: 30px;
    }

    .register_subtitle {
        font-size: 12px;
        line-height: 18px;
    }

    .register_form {
        gap: 14px;
    }

    .register_form_group {
        gap: 6px;
    }

    .register_form_label {
        font-size: 12px;
        line-height: 16px;
    }

    .register_form_input {
        padding: 10px 14px;
        font-size: 13px;
        line-height: 19px;
    }

    .register_hint {
        padding: 12px;
    }

    .register_hint_text {
        font-size: 11px;
        line-height: 16px;
    }

    .register_agreements {
        padding: 16px;
        gap: 10px;
    }

    .register_checkbox_label {
        font-size: 12px;
        line-height: 18px;
    }

    .register_note {
        font-size: 11px;
        line-height: 16px;
        padding: 10px;
    }

    .register_submit_btn {
        height: 44px;
        font-size: 14px;
        padding: 0 24px;
    }

    .register_footer_text {
        font-size: 13px;
        line-height: 19px;
    }
}

/* Extra small mobile (max 360px) */
@media (max-width: 360px) {
    .register_card {
        padding: 20px 16px;
    }

    .register_title {
        font-size: 20px;
        line-height: 28px;
    }

    .register_form_input {
        padding: 8px 12px;
        font-size: 12px;
        line-height: 18px;
    }

    .register_submit_btn {
        height: 40px;
        font-size: 13px;
    }
}
