body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
}

.container {
    display: flex;
    height: 100vh;
    background-color: #fff;
}

.left-panel {
    width: 350px;
    padding: 40px;
    background-color: #f9fafb;
    border-right: 1px solid #e5e7eb;
}

.right-panel {
    flex: 1;
    padding: 2rem 2rem 5rem 5rem;
    /* Equal padding on all sides */
    /* max-width: 500px; */
    margin: 0 auto;
}

.logo {
    margin-bottom: 40px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 40px;
}

.steps {
    display: flex;
    flex-direction: column;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 24px;
}

.step-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    flex-shrink: 0;
}

.step.completed .step-indicator {
    background-color: #dbeafe;
    color: #3b82f6;
}

.step.active .step-indicator {
    background-color: #3b82f6;
    color: white;
}

.step-content {
    display: flex;
    flex-direction: column;
}

.step-title {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.step.active .step-title {
    color: #111827;
    font-weight: 600;
}

.step-subtitle {
    font-size: 14px;
    color: #9ca3af;
}

h1 {
    font-size: 28px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #111827;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #111827;
    margin-bottom: 6px;
}

input,
select,
textarea,
.tagify {
    width: 100%;
    max-width: 400px;
    padding: 8px 12px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #111827;
    box-sizing: border-box;
}

input::placeholder,
textarea::placeholder {
    color: #9CA3AF;
}

select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%236B7280'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.upload-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    padding: 8px 12px;
    background-color: #fff;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 14px;
    color: #374151;
    cursor: pointer;
    box-sizing: border-box;
}

.upload-btn svg {
    margin-right: 8px;
}

.optional {
    color: #6B7280;
    font-weight: normal;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.continue-btn {
    width: 100%;
    max-width: 400px;
    padding: 8px 16px;
    background-color: #3B82F6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s;
    box-sizing: border-box;
}

.continue-btn:hover {
    background-color: #2563EB;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .right-panel {
        padding: 20px;
        max-width: 100%;
        box-sizing: border-box;
    }

    h1 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .form-group {
        margin-bottom: 20px;
        width: 100%;
    }

    label {
        font-size: 16px;
        margin-bottom: 8px;
    }

    input,
    select,
    textarea,
    .tagify,
    .upload-btn,
    .continue-btn {
        width: 100%;
        max-width: none;
        font-size: 16px;
        padding: 12px;
        box-sizing: border-box;
    }

    .continue-btn {
        font-size: 18px;
        padding: 14px;
    }
}

@media (max-width: 480px) {
    .right-panel {
        padding: 15px;
    }

    .left-panel {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 14px;
    }

    .step-subtitle {
        font-size: 12px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

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

    label {
        font-size: 14px;
        margin-bottom: 6px;
    }

    input,
    select,
    textarea,
    .tagify,
    .upload-btn,
    .continue-btn {
        font-size: 16px;
        padding: 10px;
    }
}

@media (max-width: 320px) {
    .right-panel {
        padding: 10px;
    }

    input,
    select,
    textarea,
    .tagify,
    .upload-btn,
    .continue-btn {
        font-size: 14px;
        padding: 8px;
    }
}

@media (max-width: 1024px) {
    .left-panel {
        width: 300px;
    }

    .right-panel {
        max-width: 700px;
    }
}

@media (max-width: 1200px) {
    .right-panel {
        padding: 2rem;
        /* Equal padding on all sides */
        max-width: 800px;
    }
}

.right-panel h1 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-box {
    background-color: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 8px;
    padding: 1rem;
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    max-width: 370px;
}

.info-box svg {
    fill: #3b82f6;
    margin-right: 1rem;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
}

.info-box-content {
    flex: 1;
}

.info-box h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #0c4a6e;
}

.info-box p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
    color: #0369a1;
    line-height: 1.4;
}

.otp-container {
    margin-bottom: 1.5rem;
    width: 100%;
    max-width: 400px;
}

.otp-container label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.otp-inputs {
    position: relative;
    width: 100%;
    border-radius: 6px;
}

#otp-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: default;
    border-radius: 6px;
}

#otp-boxes {
    display: flex;
    gap: 10px;
    width: 100%;
}

#otp-boxes span {
    flex: 1;
    height: 40px;
    border: 1px solid #ccc;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: bold;
}

#otp-boxes span.filled {
    border-color: #007bff;
    background-color: #e6f2ff;
}

.continue-btn {
    width: 100%;
    max-width: 400px;
    padding: 0.75rem;
    background-color: #3b82f6;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.2s;
}

.continue-btn:hover {
    background-color: #2563eb;
}

/* Add this to your existing CSS */

.tagify {
    --tags-border-color: #D1D5DB;
    --tags-hover-border-color: #9CA3AF;
    --tags-focus-border-color: #3B82F6;
    --tag-bg: #F3F4F6;
    --tag-hover: #E5E7EB;
    --tag-text-color: #374151;
    --tag-text-color--edit: #374151;
    --tag-pad: 0.3em 0.5em;
    --tag-inset-shadow-size: 1.1em;
    --tag-invalid-color: #D39494;
    --tag-invalid-bg: rgba(211, 148, 148, 0.5);
    --tag-remove-bg: rgba(211, 148, 148, 0.3);
    --tag-remove-btn-color: #000;
    --tag-remove-btn-bg: none;
    --tag-remove-btn-bg--hover: #c77777;
    width: 100%;
    max-width: 100%;
    border-radius: 6px;
    padding: 0;
}

.tagify__input {
    margin: 0;
    padding: 8px 12px;
    min-height: 38px;
}

.tagify__tag {
    border-radius: 4px;
    margin: 2px;
}

/* Adjust the input style to match other form inputs */
.tagify__input {
    font-size: 14px;
    color: #111827;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="password"]:focus {
    outline: none;
    border-color: #3B82F6;
    /* Changed from #4CAF50 to #3B82F6 */
    /* Changed from #4CAF50 to #3B82F6 */
}

/* Add these media queries at the end of the file */

@media (max-width: 1024px) {
    .container {
        flex-direction: column;
    }

    .left-panel {
        width: 100%;
        padding: 20px;
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
    }

    .right-panel {
        padding: 20px;
        max-width: 100%;
    }

    .steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    .step {
        width: calc(50% - 10px);
        margin-bottom: 15px;
    }

    .form-group,
    input,
    select,
    textarea,
    .tagify,
    .upload-btn,
    .continue-btn {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .right-panel {
        padding: 15px;
    }

    h1 {
        font-size: 24px;
    }

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

    label {
        font-size: 14px;
        margin-bottom: 8px;
    }

    input,
    select,
    textarea,
    .tagify,
    .upload-btn {
        font-size: 16px;
        padding: 10px 12px;
        width: 100%;
        max-width: none;
    }

    .continue-btn {
        font-size: 16px;
        padding: 12px 16px;
        width: 100%;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .step {
        width: 100%;
    }

    .left-panel {
        padding: 15px;
    }

    h2 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .step-title {
        font-size: 13px;
    }

    .step-subtitle {
        font-size: 12px;
    }

    .step-indicator {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    h1 {
        font-size: 22px;
        margin-bottom: 15px;
    }

    .upload-btn {
        font-size: 12px;
    }

    .upload-btn svg {
        width: 14px;
        height: 14px;
    }

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

    input,
    select,
    textarea,
    .tagify,
    .upload-btn {
        font-size: 15px;
        padding: 10px;
    }

    .continue-btn {
        font-size: 15px;
        padding: 12px;
    }
}

@media (max-width: 320px) {

    input,
    select,
    textarea,
    .tagify,
    .upload-btn,
    .continue-btn {
        font-size: 14px;
        padding: 8px;
    }
}

/* Add this to your existing CSS */

.messages {
    margin-bottom: 20px;
    width: 100%;
    max-width: 400px;
}

.message {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.message.error {
    background-color: #FEE2E2;
    color: #991B1B;
    border: 1px solid #F87171;
}

.message-icon {
    width: 20px;
    height: 20px;
    margin-right: 12px;
    flex-shrink: 0;
}

.message.error .message-icon {
    color: #DC2626;
}

.message span {
    flex-grow: 1;
}

/* Add this to your existing CSS */

.resend-otp {
    margin-top: 20px;
}

.resend-otp p {
    font-size: 14px;
    color: #6B7280;
}

.resend-otp a {
    color: #3B82F6;
    text-decoration: none;
    font-weight: 500;
}

.resend-otp a:hover {
    text-decoration: underline;
}

#countdown {
    font-weight: bold;
    color: #3B82F6;
}
