body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #FFFFFF;
    display: flex;
    height: 100vh;
    overflow: hidden;
}

.container-fluid {
    display: flex;
    width: 100%;
    margin: 0;
    padding: 0;
    background: #F5F4FD;
}

.left {
    width: 50%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    text-align: center;
    height: 100vh;
    overflow: hidden;
}

.left img.hiring-img {
    width: 500px;
    max-width: 90%;
    margin-bottom: 20px;
}
.left img.jobipo-img {
    width: 300px;
    max-width:300px;
    margin-bottom: 20px;
    margin-top: 20px;
}

.left h2 {
    font-size: 40px;
    margin-bottom: 10px;
    color: white;
}

.left p {
    font-size: 20px;
    max-width: 80%;
    color: #585858;
    font-family: Inter Tight;
    font-weight: 500;
    margin-bottom: 0px;
}

.right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 0;
    height: 100vh;
    overflow-y: auto;
    box-sizing: border-box;
}

.form-container {
    width: 100%;
    max-width: 600px;
    background: #FFFFFF;
    padding: 39px;
    border-radius: 15px;
    align-self: center;
}

.form-container img.logo {
    width: 258px;
    margin: 0 auto 0px;
    display: block;
    height: 120px;
}

.form-container h3 {
    text-align: center;
    color: #585858;
    margin-bottom: 20px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
    transition: all .15s ease-in-out;
    border-radius: .25rem;
    box-shadow: 0 3px 2px rgba(233, 236, 239, .05);
    justify-content:center;
}

.input-group input, .input-group textarea, .input-group select {
    width: 100%;
    padding: 12px 12px 12px 40px;
    border: none;
    border-radius: 10px !important;
    font-size: 16px;
    background: #F5F4FD;
    height: 48px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

/* Custom arrow for select boxes */
.input-group select {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f67823' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.input-group i {
    position: absolute;
    top: 17px;
    left: 12px;
    color: #f67823;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background-color:#FF8D53 !important;
    color: #FFFFFF;
    font-size: 16px;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e67e00 !important;
    transform: translateY(-2px);
}

.btn-outline-primary {
    background: transparent;
    color: #F6921E;
    border: 2px solid #F6921E !important;
    width: auto;
    padding: 8px 12px;
    margin-left: 10px;
}

.btn-outline-primary:hover {
    background: #F6921E !important;
    color: #fff;
    border-color: #F6921E !important;
}

.btn-large {
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(246, 146, 30, 0.4);
}

.btn-disabled {
    background: #ccc;
    color: white;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.login-link {
    text-align: center;
    margin-top: 20px;
    font-size: 16px;
    font-weight: 500;
    font-family: 'Segoe UI', sans-serif;
    color: #585858;
}

.login-link a {
    color: #F6921E;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
}

.login-link a:hover {
    color: #e67e00;
    transform: translateY(-1px);
}

.login-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: #e67e00;
    transition: width 0.3s ease;
}

.login-link a:hover::after {
    width: 100%;
}

.login-link a:focus {
    outline: none;
    color: #e67e00;
    text-decoration: underline;
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    position: relative;
    font-size: 0.8em;
}

.step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}
.step p{
    margin-top: 15px;
    color: #585858;
}

.step span {
    display: inline-block;
    width: 25px;
    height: 25px;
    line-height: 25px;
    border-radius: 50%;
    background: #ecf0f1;
    color: #585858;
    border:1px solid #D0D0D0;
    font-weight: 500;
    transition: all 0.4s ease;
}

.step.active span {
    background: #ffffff;
    border:1px solid #FF8D53 !important;
    color:#585858;
    transform: scale(1.2);
}

.step.completed span {
    background: #F6921E;
    color: #fff;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 14%;
    right: 16%;
    height: 3px;
    background:#585858 !important;
    z-index: 0;
    transition: background 0.4s ease;
}

.step.active ~ .step::before,
.step-indicator::before {
    background: #FF8D53;
}
/* block-screen */
.form-section {
    display: none;
    animation: slideIn 0.5s ease-out;
}
.location-suggestions{
    border: 2px solid #FF8D53;
    border-top: none;
    border-radius: 0 0 12px 12px;
    max-height: 200px;
    overflow-y: auto;
    background: white;
    position: absolute;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    top: 97px;
}

.location-suggestion {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #f8f9fa;
    transition: all 0.2s ease;
}

.location-suggestion:hover{
    background: #f8f9fa;
    color: #FF8D53;
}
.location-suggestion i{
    color: #FF8D53;
    position: relative !important;
    left: 0px !important;
    top: 1px !important;
}

.hidden {
    display: none;
}

.form-section.active {
    display: block;
}

@keyframes slideIn {
    0% { opacity: 0; transform: translateX(20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.signup-otp-inputs {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
}

.signup-otp-inputs input {
    width: 40px;
    height: 40px;
    padding: 5px 2px 8px 2px;
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #0D4574;
    border-radius: 6px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.signup-otp-inputs input:focus {
    border-color: #F6921E;
    box-shadow: 0 0 8px rgba(246, 146, 30, 0.3);
    transform: scale(1.05);
    color: #333;
    background-color: #fff;
}

.signup-otp-inputs input::placeholder {
    color: #999;
    opacity: 1;
}

.signup-otp-inputs-email {
    display: flex;
    gap: 8px;
    margin-top: 8px;
    justify-content: center;
}

.signup-otp-inputs-email input {
    width: 40px;
    height: 40px;
    padding: 5px 2px 8px 2px;
    text-align: center;
    font-size: 16px;
    color: #333;
    background-color: #fff;
    border: 1px solid #0D4574;
    border-radius: 6px;
    transition: all 0.3s ease;
    -webkit-appearance: none;
    -moz-appearance: textfield;
}

.signup-otp-inputs-email input:focus {
    border-color: #F6921E;
    box-shadow: 0 0 8px rgba(246, 146, 30, 0.3);
    transform: scale(1.05);
    color: #333;
    background-color: #fff;
}

.signup-otp-inputs-email input::placeholder {
    color: #999;
    opacity: 1;
}

.otp-counter {
    font-size: 1em;
    color: #F6921E;
    font-weight: 600;
    margin-top: 8px;
    animation: blink 1s infinite;
    text-align: center;
}

@keyframes blink {
    50% { opacity: 0.5; }
}

.signup-resend-btn {
    background: none;
    border: none;
    color: #F6921E;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9em;
    padding: 8px 15px;
    border-radius: 20px;
    display: block;
    margin: 8px auto;
}

.signup-resend-btn:hover {
    color: #fff;
    background: #e67e00;
    text-decoration: none;
}

.alert-success {
    color: #28a745;
    background-color: #dff0d8;
    border-color: #d4edda;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 15px;
    display: none;
}

.company-type-toggle {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 20px;
}
.circle-btn{border-radius:30px !important;}
.company-type-btn {    
    background: #F5F4FD;
    border: none;
    border-radius: 30px;
    padding: 12px 22px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.document-details .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(-1 * var(--bs-border-width));
}
#step3Form .input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: calc(-1 * var(--bs-border-width));
    border-top-left-radius: 30px !important;
    border-bottom-left-radius: 30px !important;
}

.company-type-btn.active {
    background: #F6921E;
    color: #fff;
    border-color: #F6921E;
}

.company-type-btn:hover {
    background: #e67e00;
    color: #fff;
    border-color: #e67e00;
}

.document-details, .manual-verification, .identity-verification {
    display: none;
}

.document-details.active, .manual-verification.active, .identity-verification.active {
    display: block;
}

.preview-details {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.preview-details p {
    margin: 5px 0;
    font-size: 14px;
}

.edit-btn {
    background: none;
    border: none;
    color: #0D4574;
    text-decoration: underline;
    cursor: pointer;
    font-size: 14px;
    margin-top: 10px;
}

.edit-btn:hover {
    color: #003087;
}

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

    .left, .right {
        width: 100%;
    }

    .login-link {
        font-size: 14px;
        margin-top: 15px;
    }

    .form-container {
        max-width: 100%;
        padding: 20px;
        width: 360px !important;
       align-self: center;
    }

    .right {
        padding: 0px;
    }

    .step-indicator {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin: 20px 0;
        position: relative;
        font-size: 0.8em;
    }

    .step.active ~ .step::before, .step-indicator::before {
        background: #585858 !important;
    }

    .step-indicator::before {
        content: '';
        position: absolute;
        top: 12px;
        left: 5%;
        right: 17%;
        height: 3px;
        background: #ddd;
        z-index: 0;
        transition: background 0.4s ease;
    }

    .step {
        flex: none;
    }

    .step span {
        width: 20px;
        height: 20px;
        line-height: 20px;
        font-size: 0.8em;
    }

    .signup-otp-inputs input {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    .signup-otp-inputs-email input {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .otp-counter {
        font-size: 0.9em;
    }

    .signup-resend-btn {
        font-size: 0.8em;
    }

    .btn-primary, .btn-outline-primary {
        font-size: 0.8em;
        padding: 8px;
    }

    .btn-large {
        font-size: 0.9em;
        padding: 10px;
    }

    .company-type-btn {
        font-size: 12px;
        padding: 6px 12px;
    }
    .loader {
        left: 39% !important;
        top: 75% !important;
    }
    .left img.hiring-img {
        width: 250px !important;
    }
}

@media screen and (max-width: 576px) {
    .left {
        padding: 20px;
        display:none;
    }

    .login-link {
        font-size: 12px;
        margin-top: 12px;
    }

    .left h2 {
        font-size: 24px;
    }

    .left p {
        font-size: 16px;
    }

    .form-container img.logo {
        width: 200px;
    }

    .form-container h3 {
        font-size: 20px;
    }

    .input-group input, .input-group textarea, .input-group select {
        font-size: 14px;
        padding: 10px 10px 10px 35px;
    }

    .input-group i {
        top: 10px;
        left: 10px;
    }

    .signup-otp-inputs input {
        width: 30px;
        height: 30px;
        font-size: 0.8em;
    }
        .signup-otp-inputs-email input {
        width: 30px;
        height: 30px;
        font-size: 0.8em;
    }

    .btn-primary, .btn-outline-primary {
        font-size: 0.7em;
        padding: 6px;
    }

    .btn-large {
        font-size: 0.8em;
        padding: 8px;
    }

    .company-type-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
    .loader {
        left: 39% !important;
        top: 75% !important;
    }
}

.input-group[style*="display: flex"] .btn-primary,
.input-group[style*="display: flex"] .btn-outline-primary {
    padding: 12px;
    font-size: 16px;
    border-radius: 7px;
    text-align: center;

}

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #F6921E;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    left: 73%;
    position: relative;
    top: 50%;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
