@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    background-color: #ffff;
    color: #333;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 30px;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}
:root {
    --primary: #0057ac;
    --secondary: #009fe0;
    --text-1: #363b51;
    --text-2: #292e3ede;
    --light: #fff;
    --transition: all 0.5s linear;
    --transition-2: all 0.5s ease-in-out;
    --primary-font: "Archivo", sans-serif;
    --secondary-font: "Open Sans", sans-serif;
}
h1, h2, h3, h4, h5, h6,
.form-title, .section-title, .form-header h2,
.congratulations-title, .downloads-title,
.welcome-content h1, .left-panel h1 {
    font-family: var(--primary-font) !important;
}
p, span, label, input, select, textarea,
.login-subtitle, .tagline, .terms, .password-requirements,
.step, .login-link, .form-group label {
    font-family: var(--secondary-font) !important;
}
.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 180px;
    width: 100%;
}

.logo-icon {
    width: 100%;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #1e90ff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
}

.search-box input {
    padding: 8px 35px 8px 15px;
    border: 1px solid #ddd;
    border-radius: 20px;
    width: 200px;
    outline: none;
    font-family: sans-serif;
}

.search-icon {
    position: absolute;
    right: 12px;
    color: #666;
}

.login-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.login-btn {
    background-color: #002040;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    font-family: poppins;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.login-btn i {
    color: white;
    font-size: 12px;
}

.login-subtitle {
    font-size: 11px;
    color: #333;
    font-weight: 400;
}

/* Registration Form */
.form-wrapper__section {
    margin-top: 50px;
    background: #ffff;
    position: relative;
}

.registration-form {
    position: relative;
    background-color: #F7FCFF;
    overflow: hidden;
    border-radius: 100px;
}

.registration-form::before {
    content: url(/assets/images/bg.png); 
    position: absolute;
    left: -60px;
    bottom: -260px; 
    z-index: 1;     
}

/* Progress Steps */
.progress-container {
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    padding: 20px 30px 20px 70px;
}

.progress-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.step a {
    text-decoration: none;
    color: inherit;
}

.step a:visited,
.step a:active {
    color: inherit;
}

.step {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.step.active {
    color: #1e3a8a;
    font-weight: 600;
}

.step.active a {
    color: #1e3a8a;
}

.step-separator {
    color: #999;
}
.step-page {
    display: none;              
}
.step-page.active {
    display: block;              
}

.step.active,
.step.active a { color:#1e3a8a; font-weight:600; }

.step-page { opacity:0; transition:opacity .25s ease; }
.step-page.active { opacity:1; }

/* Main Container */
.main-container {
    background-color: #f5f7fa;
}

.content-wrapper {
    display: flex;
    min-height: calc(100vh - 140px);
}

/* Left Section */
.left-section {
    flex: 1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
    position: relative;
    border-right: 6px solid #0357aa;
    overflow: hidden;
}

.welcome-content {
    text-align: center;
    z-index: 2;
    position: relative;
}

.welcome-content h1 {
    font-size: 36px;
    color: #1e3a8a;
    margin-bottom: 20px;
}

.brand-logo {
    max-width: 350px;
    width: 100%;
    margin: 0 auto 30px;
}

.brand-icon {
    width: 100%;
    height: auto;
    display: block;
}

.tagline {
    font-size: 16px;
    color: #555;
    max-width: 400px;
    margin: 0 auto;
}

.globe-background {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 2px solid rgba(30, 144, 255, 0.1);
    bottom: -200px;
    left: 50%;
    transform: translateX(-50%);
}

.globe-background::before,
.globe-background::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(30, 144, 255, 0.1);
}

.globe-background::before {
    width: 400px;
    height: 400px;
    top: 50px;
    left: 50px;
}

.globe-background::after {
    width: 300px;
    height: 300px;
    top: 100px;
    left: 100px;
}

.form-wrapper {
    margin-top: 50px;
}

/* Right Section */
.right-section {
    flex: 1;
    background-color: #F7FCFF;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px;
}

.form-container {
    width: 100%;
    max-width: 600px;
}

.form-title {
    color: #002040;
    font-size: 24px;
    margin-bottom: 30px;
    text-decoration: underline;
}

.section-title {
    color: #1e3a8a;
    font-size: 20px;
    margin-bottom: 25px;
    font-weight: 600;
}

/* Form Content */
.form-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    /* gap: 8px; */
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
    font-family: sans-serif;
}

.form-group input[type="text"]:focus,
.form-group select:focus {
    border-color: #1e90ff;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    background-color: white;
}

/* Contact Number Row */
.contact-number-row {
    display: flex;
    gap: 10px;
}

.country-code {
    flex: 0 0 120px;
}

.country-code select {
    width: 100%;
}

.phone-number {
    flex: 1;
}

.phone-number input {
    width: 100%;
}

/* File Input Wrapper */
.file-input-wrapper {
    position: relative;
    display: flex;
    gap: 0;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.file-input-wrapper input[type="text"] {
    flex: 1;
    padding: 12px 15px;
    border: none;
    font-size: 14px;
    background-color: #ffffff;
    font-family: sans-serif;
    outline: none;
}

.file-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 2px 10px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    transition: background-color 0.3s;
    font-family: sans-serif;
    border-radius: 20px;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.file-btn:hover {
    background-color: #1d4ed8;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.form-actions.space-between {
    justify-content: space-between;
}

.next-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
}

.next-btn i {
    color: white;
    font-size: 14px;
}

.next-btn:hover {
    background-color: #1873cc;
}

.prev-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: sans-serif;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.prev-btn i {
    color: white;
    font-size: 14px;
}

.prev-btn:hover {
    background-color: #1873cc;
}

.submit-btn {
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: sans-serif;
}

.submit-btn:hover {
    background-color: #c82333;
}

.preview-button-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.preview-mou-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 14px 50px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: sans-serif;
}

.preview-mou-btn:hover {
    background-color: #1d4ed8;
}

.form-actions.centered {
    justify-content: center;
}


.completion-content {
    text-align: center;
    padding: 40px 0;
}

.congratulations-title {
    color: #1e3a8a;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
}

.downloads-title {
    color: #000;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 40px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.download-btn {
    background-color: #1e3a8a;
    color: white;
    border: none;
    padding: 16px 60px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    font-family: sans-serif;
    min-width: 350px;
}

.download-btn:hover {
    background-color: #1d4ed8;
}

@media (max-width: 1025px) {
    .content-wrapper {
        flex-direction: column;
    }
    .left-section {
        order: 1;
        min-height: 300px;
        border-right: none !important;
        padding: 30px 20px;
    }

    .progress-container {
        order: 2;
        padding: 15px 20px;
    }
    .step-separator {
        display: none;
    }
    .registration-form {
        border-radius: 50px;
    }

    .right-section {
        order: 3;
        padding: 30px 20px;
    }
    
    .registration-form::before {
        content: unset;
    }
    .logo {
        max-width: 150px;
    }

    .brand-logo {
        max-width: 280px;
    }

    .welcome-content h1 {
        font-size: 30px;
    }

    .nav-menu {
        gap: 20px;
    }
}

@media (max-width: 845px) {
    .nav-menu,
    .search-box {
        display: none;
    }

    .nav-right {
        gap: 10px;
    }

    .login-btn {
        padding: 8px 15px;
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .progress-steps {
        font-size: 12px;
        gap: 15px;
    }

    .welcome-content h1 {
        font-size: 26px;
    }

    .tagline {
        font-size: 14px;
    }

    .right-section {
        padding: 20px 15px;
    }

    .logo {
        max-width: 120px;
    }

    .brand-logo {
        max-width: 220px;
    }

    .container {
        padding: 0 15px;
    }

    .contact-number-row {
        flex-direction: column;
        align-items: stretch;
    }

    .country-code,
    .phone-number {
        flex: 1;
    }


    .preview-mou-btn {
        padding: 12px 40px;
        font-size: 15px;
    }

    .congratulations-title {
        font-size: 26px;
    }

    .downloads-title {
        font-size: 20px;
    }

    .download-btn {
        min-width: 280px;
        padding: 14px 40px;
        font-size: 15px;
    }

    .file-btn {
        padding: 2px 8px;
        font-size: 13px;
        right: 4px;
    }
}

@media (max-width: 480px) {
    .welcome-content h1 {
        font-size: 22px;
    }

    .form-title {
        font-size: 20px;
    }

    .section-title {
        font-size: 18px;
    }

    .next-btn,
    .prev-btn,
    .submit-btn {
        padding: 10px 20px;
        font-size: 14px;
    }

    .file-btn {
        padding: 1px 6px;
        font-size: 12px;
        right: 3px;
    }
}



/* Main Section */
.main-wrapper {
    margin-top: 60px;
    display: flex;
    justify-content: center;
    padding: 40px 20px;
}

.card-container {
    display: flex;
    background: #F7FCFF;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    max-width: 1200px;
    width: 100%;
}
.card-container::before{
    content: url(../img/bg.png);
    position: absolute;
    left: -168px;
    bottom: -260px;
    z-index: 1;
}

/* .left-panel {
    flex: 1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    border-right: 6px solid #0357aa;
} */

.left-panel {
    flex: 1;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

.left-panel::after {
    content: "";
    position: absolute;
    right: 0;
    top: 9%;
    height: 70%;  
    width: 6px;
    background: #0357aa;
}

.left-panel h1 {
    font-size: 42px;
    color: #1e3a8a;
    margin-bottom: 30px;
}

.left-panel .brand-logo {
    width: 320px;
    margin: 30px 0;
}

.left-panel .tagline {
    font-size: 17px;
    color: #444;
    max-width: 420px;
    line-height: 1.6;
}

.right-panel {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8eef7 100%);
}

.form-header {
    text-align: left;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 30px;
    font-weight: 700;
    font-family: var(--primary-font);
    color: #0357aa;
    margin-bottom: 8px;
}

.form-header p {
    color: #49607a;
    font-size: 16px;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 15px;
}

.form-group label span {
    color: #e74c3c;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    outline: none;
    transition: border 0.3s;
}

.form-group input:focus {
    border-color: #2854FF;
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 50px;
}

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

.password-requirements {
    font-size: 13px;
    color: #666;
    margin-top: 8px;
    line-height: 1.5;
}

.terms {
    font-size: 14px;
    color: #444;
    font-weight: 500;
    margin: 25px 0;
}

.terms a {
    color: #2854FF;
    text-decoration: underline;
}

.continue-btn {
    background: #0357aa;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-family: var(--secondary-font);
    font-weight: 600;
    cursor: pointer;
    display: block;
    width: fit-content;
    transition: background 0.3s;
}

.login-link {
    text-align: left;
    margin-top: 25px;
    font-size: 14px;
}

.login-link a {
    color: #2854FF;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .card-container {
        flex-direction: column;
    }
    
    .left-panel {
        border-right: unset !important ;
        padding: 30px;
    }
    .left-panel::after {
        content: unset !important;
    }
    .left-panel h1 { font-size: 36px; }
    .left-panel .brand-logo { width: 260px; }
}

@media (max-width: 768px) {
    .nav-menu, .search-box {
         display: none; 
        }
    .left-panel h1 { 
        font-size: 30px;
     }
    .right-panel { 
        padding: 50px 30px; 
    }
    .form-header h2 { 
        font-size: 28px; 
    }
}

@media (max-width: 480px) {
    .container { 
        padding: 0 15px; 
    }
    .left-panel { 
        padding: 40px 20px; 
    }
    .right-panel { 
        padding: 40px 20px; 
    }
    .left-panel h1 { 
        font-size: 26px; 
    }
    .form-header h2 { 
        font-size: 24px;
         }
}

.password-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.password-input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-size: 15px;
    height: 52px;
    outline: none;
    background: #fff;
    width: 100%;
}

.password-input:focus {
    border-color: #2854FF;
    box-shadow: 0 0 0 3px rgba(40, 84, 255, 0.1);
}

.eye-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    background-color: #fff; 
    border-radius: 12px;
    cursor: pointer;
    font-size: 19px;
    color: #555;
    flex-shrink: 0;
    transition: all 0.2s;
}

.eye-toggle:hover {
    background-color: #e0e8ff;
    color: #333;
}

.password-requirements {
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.password-requirements ul {
    display: inline-block;
    margin: 4px 20px 0 0;
    padding-left: 18px;
}


.login-input {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #d0d5dd;
    border-radius: 12px;
    background-color: #fff;
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    outline: none;
    transition: all 0.3s;
}

.login-input:focus {
    border-color: #0057ac;
    box-shadow: 0 0 0 4px rgba(0, 87, 172, 0.15);
}

.remember-forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0 35px;
    font-size: 14px;
    color: #333;
}


.remember-me {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-radius: 6px;
    background-color: transparent;  
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s;
}

.remember-me:hover .checkmark {
    border-color: #0057ac;
}

.remember-me input:checked ~ .checkmark {
    background-color: transparent !important;   
    border-color: #333;                         /
}

.remember-me input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 11px;
    border: solid #000000;         
    border-width: 0 2.8px 2.8px 0;
    transform: rotate(45deg);
}

.forgot-link {
    color: #0057ac;
    text-decoration: none;
    font-weight: 500;
}

.forgot-link:hover {
    text-decoration: underline;
}

.signin-btn:hover {
    background-color: #004087;
}


.right-panel {
    padding: 80px 100px;
}

@media (max-width: 992px) {
    .right-panel { padding: 60px 60px; }
}
@media (max-width: 576px) {
    .right-panel { padding: 50px 30px; }
    .remember-forgot-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}

.remember-forgot-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 25px 0 40px;
    flex-wrap: wrap;
    gap: 20px 0;
}

.remember-me {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
    gap: 10px;
}

.remember-me input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
.remember-me:hover .checkmark {
    border-color: #0057ac;
}
.remember-me input:checked ~ .checkmark {
    background-color: #0057ac;
    border-color: #0057ac;
}
.remember-me input:checked ~ .checkmark:after {
    content: "";
    color: white;
    font-size: 16px;
    font-weight: bold;
}
.forgot-link {
    color: #0057ac;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-top: 8px;
}

.forgot-link:hover {
    text-decoration: underline;
}

.signin-btn {
    background-color: #0057ac;
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
}

.signin-btn:hover {
    background-color: #0984a7
}
.sigin{
    display: flex;
    justify-content: center;
    align-items: center;

}

.verification-row {
    display: flex;                    
    align-items: center;              
    gap: 16px;                        
    margin: 30px 0 35px;
    flex-wrap: nowrap;         
}
.verification-row label {
    margin: 0;
    font-weight: 500;
    color: #333;
    font-size: 15px;
    white-space: nowrap;       
}
.verification-input-wrapper {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;                       
}
.verification-input {
    width: 160px !important;
    max-width: 220px;
    padding: 12px 10px !important;
    font-size: 15px;
    flex-shrink: 0;
}
.receive-code-link {
    color: #0057ac;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
}

.receive-code-link:hover {
    text-decoration: underline;
    color: #003d80;
}

.register-content{
    display: flex;
     font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
    gap: 10px;
    position: relative;
    margin-bottom: 10px;
    align-items: center;
    white-space: nowrap;
    
}
/* .register-content::before{
    content: "";
    width: 1px;
    height: 8px;
    background-color: black;
    position:absolute;
} */
 .register-content a:not(:last-child){
    border-right: 1px solid black;
    /* padding-right: 8px; */
 }


.register h3{
    font-size: 16px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    user-select: none;
    gap: 10px;
    
    margin-bottom: 15px;
}

.register-btn{
        background-color: #023568;
    color: white;
    border: none;
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
}
.register-btn:hover{
    color:white;
    background-color: #009fe0;
}