.register-stepper-container {
    display: flex;
    min-height: 100vh;
    background: linear-gradient(90deg, #170029 0%, #2B2929 100%);
    font-family: 'Poppins', sans-serif;
}
.register-stepper-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    padding: 60px 0 60px 8vw;
}
.register-stepper-form {
    width: 400px;
    background: transparent;
    color: #fff;
}
.register-stepper-header h1 {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.register-stepper-header p {
    font-size: 1rem;
    margin-bottom: 0;
}
.register-stepper-header a {
    color: #E88BFF;
    font-weight: 600;
    text-decoration: none;
}
.register-stepper-progress {
    display: flex;
    align-items: center;
    margin: 32px 0 32px 0;
}
.stepper-step {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #E88BFF;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    border: 2px solid #E88BFF;
    transition: background 0.2s, color 0.2s;
}
.stepper-step:not(.active) {
    background: transparent;
    color: #E88BFF;
}
.stepper-line {
    width: 48px;
    height: 2px;
    background: #E88BFF;
    margin: 0 12px;
}
.register-stepper-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.register-stepper-content.d-none {
    display: none;
}
.register-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.register-input-icon {
    position: relative;
    display: flex;
    align-items: center;
}
.register-input-icon img {
    position: absolute;
    left: 10px;
    width: 18px;
    opacity: 0.7;
}
.register-input-icon input,
.register-input-icon select {
    width: 100%;
    padding: 10px 10px 10px 38px;
    background: transparent;
    border: none;
    border-bottom: 2px solid #fff;
    color: #fff;
    font-size: 1rem;
    border-radius: 0;
    outline: none;
}
.register-input-icon input::placeholder {
    color: #fff9;
}
.register-input-icon select {
    appearance: none;
    background: transparent;
}
/* Phone input specific styles */
.register-input-icon .phone-country-select {
    width: 25%;
    padding-right: 0;
    border-right: none;
}
.register-input-icon #phone-input {
    width: 75%;
    padding-left: 10px;
}
.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}
.register-stepper-next,
.register-stepper-register {
    width: 100%;
    background: linear-gradient(90deg, #E88BFF 0%, #A259FF 100%);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 18px;
    cursor: pointer;
    transition: background 0.2s;
}
.register-stepper-next:hover,
.register-stepper-register:hover {
    background: linear-gradient(90deg, #A259FF 0%, #E88BFF 100%);
}
.register-field.checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
}
.checkbox-label {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.3;
}
.register-socials {
    display: flex;
    gap: 18px;
    margin-top: 32px;
    justify-content: center;
}
.social-btn {
    background: #232323;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.2s;
}
.social-btn.disabled {
    opacity: 0.4;
    pointer-events: none;
}
.register-stepper-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 4vw;
}
.register-stepper-image {
    max-width: 340px;
    height: auto;
}
@media (max-width: 1100px) {
    .register-stepper-left, .register-stepper-right {
        padding: 40px 0 40px 0;
    }
    .register-stepper-form {
        width: 90vw;
        max-width: 400px;
    }
    .register-stepper-image {
        max-width: 220px;
    }
}
@media (max-width: 900px) {
    .register-stepper-container {
        flex-direction: column;
        align-items: center;
    }
    .register-stepper-left, .register-stepper-right {
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .register-stepper-form {
        width: 95vw;
        max-width: 400px;
    }
    .register-stepper-image {
        display: none;
    }
} 