/* register-stepper.css */

.whb-col-right.whb-column13 .wd-header-my-account {
    display: none !important;
}

.register-wrapper {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    height: auto;
    overflow: hidden;
}

.register-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    box-sizing: border-box;
    height: 100%;
}

.register-left {
    flex: 1;
    /* display: flex; */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 30px;
    box-sizing: border-box;
    height: 100%;
}

.register-left img {
    width: 504px;
    height: 504px;
    object-fit: contain;
    border-radius: 20px;
}

.register-right {
    flex-direction: column;
    text-align: center;
}

.register-right h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #1a1a1a;
}

.register-right img {
    max-width: 120px;
    margin-bottom: 20px;
}

.stepper-wrapper {
    height: 340px;
    width: 100%;
    max-width: 400px;
    position: relative;
}

#register-stepper {
    width: 100%;
    max-width: 400px;
    text-align: left;
}

#register-stepper label {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 8px;
    display: block;
    color: #333;
}

.step-1-phone,
.step-1-country-code,
.step-3-name,
.step-3-email,
.step-3-ic,
.step-3-password {
    width: 100%;
    padding: 12px 16px;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 16px;
    box-sizing: border-box;
    margin-bottom: 16px;
}

.step-1-country-code {
    width: 30% !important;
    padding: 8px 30px;
}

#register-stepper button {
    border-radius: 12px;
    background-color: #ed1c24;
    color: white;
    font-weight: bold;
    padding: 14px;
    width: 100%;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#register-stepper button:hover {
    background-color: #c71017;
}

.step {
    display: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.step.active {
    display: block;
}

.card-white {
    background-color: #fff;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    box-sizing: border-box;
}

.otp-inputs {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    gap: 10px;
}

.step-2-otp {
    width: 48px;
    height: 48px !important;
    font-size: 24px;
    text-align: center;
    border-radius: 12px !important;
    border: 1px solid #ccc;
}

.resend-code {
    margin-top: 10px;
    color: green;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
}

.back-button {
    margin-top: 20px;
    text-align: left;
    cursor: pointer;
    color: #333;
    font-weight: bold;
    font-size: 14px;
}

.progress-indicator {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
    padding: 0 20px;
}

.step-dot {
    height: 8px;
    min-width: 80px;
    border-radius: 10px;
    background-color: #eee;
    transition: background-color 0.3s;
}

.step-dot.active {
    background-color: red;
}

a {
    color: green;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.step-title {
    font-size: 14px;
    margin-bottom: 4px;
    color: #444;
}

.step-subtitle {
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
}

.password-wrapper {
    position: relative;
}

.step-3-password {
    padding-right: 40px;
}

.toggle-password {
    position: absolute;
    top: 35%;
    right: 15px;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 14px;
    color: #888;
}

.terms-checkbox {
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: left;
}

.terms-checkbox label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.terms-checkbox input[type="checkbox"] {
    transform: scale(1.2);
    margin: 0;
    cursor: pointer;
}

.terms-checkbox a {
    font-weight: bold;
    text-decoration: underline;
    color: #000;
}

#register-stepper button:disabled {
    background-color: #f7bdbd;
    color: white;
    cursor: not-allowed;
}

.required {
    color: red;
}

.password-rules {
    list-style: none;
    padding-left: 0;
    font-size: 14px;
    margin-top: 10px;
}

.password-rules li {
    color: #999;
    margin-bottom: 4px;
}

.password-rules li.valid {
    color: green;
    font-weight: 500;
}

::placeholder {
    color: #9e9e9e;
    font-weight: 500;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0);
    }

    70% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bouncy-image {
    animation: bounce 1s ease infinite;
}

.swal2-confirm {
    background-color: #eb001e !important;
    color: white !important;
    border: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
}

.wd-page-title {
    display: none !important;
}

@media (max-width: 680px) {
    .register-left {
        display: none !important;
    }
}