.register-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 30px;
    background: #fff;
    padding-bottom: 30px;
    margin-top: 20px;
}

.register-left {
    background-color: #fffaf7;
    /* Light orange background */
    padding: 30px 60px;
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; */
    border-radius: 12px;
    /* border: 1px solid #edf2f7; */
}

.register-right {
    /* padding: 30px 60px; */
    /* display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff; */
    /* box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7; */
    /* border-radius: 12px; */
}

/* Left content styles */
.promo-title {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #111827;
    margin-bottom: 5px;
    /* text-align: center; */
}

.promo-subtitle {
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 700;
    color: #ff4d00;
    margin-bottom: 20px;
    /* text-align: center; */
}

.promo-desc {
    font-size: 18px;
    /* text-align: center; */
    max-width: 400px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.promo-image {
    /* max-width: 40%; */
    margin-bottom: 20px;
}

.promo-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
    /* max-width: 420px; */
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
    padding: 15px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

/* Assign colors to icons */
.icon-1 {
    background: #fff1eb;
    color: #ff4d00;
}

.icon-2 {
    background: #e6f7ed;
    color: #059669;
}

.icon-3 {
    background: #eff6ff;
    color: #2563eb;
}

.icon-4 {
    background: #f5f3ff;
    color: #7c3aed;
}

.feature-text h4 {
    margin: 0 0 5px 0;
    font-size: 15px;
    font-weight: 700;
    color: #111827;
}

.feature-text p {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
    line-height: 1.4;
}

/* Right content styles */
.form-wrapper {
    /* max-width: 460px; */
    width: 100%;
    margin: 0 auto;
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    border-radius: 12px;
    margin-top: 50px;
}

.register-right.register .form-wrapper {
    margin-top: 0;
    box-shadow: none;
    border: none;
    padding: 0;
}

.register-right.register {
    padding: 50px 80px;
    display: flex;
    flex-direction: column;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 1px solid #edf2f7;
    border-radius: 12px;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 15px;
    color: #000;
    margin-bottom: 20px;
}

.login-fast {
    font-size: 15px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    margin-top: 20px;
}

.form-subtitle a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

.social-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.btn-social {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    background: #fff;
    color: #374151;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-social:hover {
    background: #f9fafb;
}

.btn-social img {
    width: 20px;
    height: 20px;
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
    margin-bottom: 15px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e5e7eb;
}

.divider:not(:empty)::before {
    margin-right: 15px;
}

.divider:not(:empty)::after {
    margin-left: 15px;
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: #fff;
    padding: 0 16px;
    transition: border-color 0.2s;
}

.input-wrap:focus-within {
    border-color: #ff4d00;
}

.input-wrap .material-symbols-outlined {
    color: #9ca3af;
    font-size: 20px;
    margin-right: 10px;
}

.input-wrap input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 15px;
    color: #111827;
    background: transparent;
    width: 100%;
}

.input-wrap input::placeholder {
    color: #9ca3af;
}

.toggle-password-eye {
    cursor: pointer;
    margin-left: 10px;
    color: #9ca3af;
}

.terms-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    /* margin-bottom: 25px; */
}

.terms-wrap input[type="checkbox"] {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    accent-color: #ff4d00;
}

.terms-wrap label {
    font-size: 14px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 0;
}

.terms-wrap a {
    color: #3b82f6;
    text-decoration: none;
}

.btn-submit {
    width: 100%;
    background: #ff4d00;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #e64500;
}

.secure-info {
    text-align: center;
    margin-top: 25px;
    font-size: 13px;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

@media (max-width: 991px) {
    .register-left {
        padding: 10px;
    }

    /* .register-right {
        padding: 20px 15px;
    } */

    header {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .register-layout {
        grid-template-columns: 1fr;
        gap: 15px;
        padding-bottom: 20px;
    }

    .register-left>* {
        display: none;
    }

    .register-left>img {
        display: block;
        margin-bottom: 0;
    }

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

    .login-fast {
        text-align: center;
    }

    .btn-social {
        padding: 8px;
    }

    .social-buttons {
        margin-bottom: 10px;

    }

    .form-wrapper {
        margin-top: 0px;
        box-shadow: none;
        border: none;
        padding: 15px;
    }

    .register-right.register .secure-info {
        margin-top: 20px;
    }

    .secure-info {
        margin-top: 0px;
    }

    .register-right.register {
        box-shadow: none;
        border: none;
        padding: 15px;
    }

    .form-title,
    .form-subtitle {
        text-align: center;
    }
}

/* Error message styling */
.error-msg {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: block;
}

/* SVG icons */
.svg-icon {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    margin-right: 10px;
    color: #9ca3af;
}

/* Auth Header Styling */
.auth-header {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 25px;
    border-bottom: 1px solid #f3f4f6;
    background: transparent;
    display: none;
}

.auth-header .auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
}

.auth-header .auth-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
    display: block;
}

.auth-header .btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
    background: #fff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    justify-self: start;
}

.auth-header .btn-back:hover {
    color: #ff4d00;
    border-color: #ff4d00;
    transform: translateX(-4px);
    box-shadow: 0 4px 12px rgba(255, 77, 0, 0.1);
}

.auth-header .btn-back .material-symbols-outlined {
    font-size: 20px;
    transition: transform 0.2s ease;
}

.auth-header .btn-back:hover .material-symbols-outlined {
    transform: translateX(-2px);
}

.auth-header .auth-header-right {
    justify-self: end;
}

@media (max-width: 991px) {
    .auth-header {
        padding: 15px 0px;
        margin-bottom: 15px;
    }

    .auth-header .auth-logo img {
        height: 34px;
    }

    .auth-header .btn-back {
        padding: 8px;
        border: none;
        background: transparent;
        box-shadow: none;
        color: #111827;
    }

    .auth-header .btn-back:hover {
        background: transparent;
        box-shadow: none;
        transform: translateX(-2px);
    }

    .auth-header .btn-back .material-symbols-outlined {
        font-size: 24px;
    }

    .auth-header .btn-back-text {
        display: none;
    }

    .auth-header {
        display: grid;
    }

    .input-wrap input {
        padding: 10px 0;
        font-size: 14px;
    }

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

}