:root {
    --Neutral-900: #101B30;
    --Neutral-500: #888D98;
    --Neutral-200: #E7E8EA;
    --Primary-Color: #D42B65;
    --Neutral-700: #404959;
}

.error-message {
    font-weight: 400;
    line-height: 20px;
    font-size: 12px;
    margin-top: 8px;
    display: block;
}

input.error {
    border-color: #F93642 !important;
    border: 1.5px solid #F93642 !important;
}

.textfield-1 input:focus-visible,
.textfield-1 .flatpickr-wrapper .date-input:focus-visible,
.textfield-1 select:focus-visible {
    outline: none;
}

.textfield-1 input,
.textfield-1 .flatpickr-wrapper .date-input,
.textfield-1 select {
    height: 48px;
    border-radius: 12px;
    border: 1.5px solid var(--Neutral-200, #E7E8EA);
    padding: 10px 16px;
    background: inherit;
    color: var(--Neutral-900, #101B30);
    width: 100%;
}

.textfield-1 input::placeholder,
.textfield-1 .flatpickr-wrapper .date-input::placeholder,
.textfield-1 select::placeholder {
    color: var(--Neutral-500, #888D98);
}

.input-field::placeholder {
    color: var(--Neutral-500, #888D98) !important;
    font-size: 16px !important;
    font-weight: 400 !important;
    line-height: 24px !important;
}

input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #D42B65;
    cursor: pointer;
    border: 2px solid #707683 !important;
}

.text-body-sm {
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;
}

.text-title-sm {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    color: #101B30;
}

.password-container {
    position: relative;
}

.password-container .styled-input:not(:placeholder-shown)~.password-toggle {
    display: block;
}

.password-toggle {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: none;
    z-index: 2;
}

.input-password-label+.input-field+.password-toggle {
    top: calc(55% + 12px);
}

.password-toggle img {
    width: 20px;
    height: 20px;
}

.eye-closed {
    color: #404959 !important;
}

.text-title-lg {
    font-size: 42px;
    font-weight: 600;
    line-height: 58px;
}

.signin-button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 24px;
    border-radius: 12px;
    background: var(--Primary-Color);
    border: none;
    color: #fff;
    height: 52px;
}

.signin-button:hover {
    background: #EE4E86;
}

.signin-button:focus,
.signin-button:focus-visible {
    outline: 3px solid #EEAAC1 !important;
    box-shadow: 0 0 0 3px #EEAAC1 !important;
}

.text-body-lg {
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    color: var(--Neutral-700, #404959);
    opacity: 75%;
}

/* Progress bar styling */
.progress-container {
    margin-bottom: 30px;
}

.signup-container .progress-steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 20px;
}

.signup-container .step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--Neutral-200);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    z-index: 2;
    position: relative;
}

.signup-container .step.active {
    background-color: var(--Primary-Color);
    color: white;
}

.signup-container .step.completed {
    background-color: var(--Primary-Color);
    color: white;
}

.signup-container .step-connector {
    position: absolute;
    height: 4px;
    background-color: var(--Neutral-200);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.signup-container .step-connector.completed {
    background-color: var(--Primary-Color);
}

.signup-container .otp-input-container {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.signup-container .otp-input {
    max-width: 72px !important;
    width: 100% !important;
    height: 72px;
    text-align: center !important;
    font-size: 32px;
    line-height: 40px;
    font-weight: 500 !important;
    background-color: #EFF0F2 !important;
    border-radius: 16px !important;
}

.signup-container .form-step {
    display: none;
}

.signup-container .form-step.active {
    display: block;
}

.caption-md {
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
}

.text-pre-color {
    color: #707683;
}

.resend-otp {
    color: var(--Primary-Color);
    cursor: pointer;
    text-decoration: underline;
}

.interest-category {
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 12px;
}

.interest-category img {
    border-radius: 16px;
    width: 100%;
    height: 104px;
    padding: 12px 12px 4px 12px;
    object-fit: cover;
}

.interest-category p {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0;
    color: var(--Neutral-700);
}

.interest-category.selected .interest-image-wapper {
    background-color: #D42B65;
}

.interest-category.selected p {
    color: white;
}

.interest-image-wapper {
    border-radius: 16px;
    border: 1px solid #E7E8EA;
}

.google-signup-btn {
    background-color: #ffffff;
    border: 1px solid #dadce0;
    border-radius: 8px;
    color: #3c4043;
    cursor: pointer;
    font-size: 14px;
    height: 48px;
    padding: 0 16px;
    transition: all 0.2s ease;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-decoration: none;
}

.google-icon {
    width: 20px;
    height: 20px;
}

.google-signup-btn:hover {
    background-color: #f8f9fa;
    border-color: #c8ccd1;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #3c4043;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    margin: 24px 0;
    margin-bottom: 42px;
    border: none !important;
}

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

.divider span {
    padding: 0 16px;
    color: #666;
    font-size: 14px;
}

.cart-review-container {
    background: #283245;
    border-radius: 16px;
    padding: 20px 20px 42px 20px;
    gap: 12px;
}

.cart-review-wrapper .carousel-indicators {
    bottom: 20px;
    margin: 0px;
    left: 50%;
    transform: translateX(-50%);
    justify-content: center;
}

label.error {
    color: #F93642 !important;
    margin-top: 8px;
}

@media (max-width: 767px) {
    .interest-category img {
        height: 80px;
    }

    .interest-category p {
        font-size: 12px;
    }
}

@media (max-width: 576px) {
    .text-title-lg {
        font-size: 36px;
    }

    .login-main-content {
        gap: 10px !important;
    }

    .step {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
}

