* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: #EBF6FC;
    color: #333;
    font-size: 14px; 
    line-height: 1.5;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: #0076bf;
    transition: color 0.2s;
}
a:hover {
    text-decoration: underline;
}

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 18px 0;
    flex-shrink: 0;
}

.header-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: flex-end;
}
.main-logo {
    height: 34px;
}
.logo-text {
    color: #009FE3;
    font-size: 26px;
    font-weight: 700;
    font-style: italic;
    margin-left: 6px;
    line-height: 1;
    position: relative;
    top: 2px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 10px;
}
.contact-icon {
    font-size: 26px;
    color: #0076bf;
}
.contact-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.2;
}
.contact-label {
    font-size: 11px;
    color: #333;
    font-weight: 500;
}
.contact-number {
    font-size: 15px;
    font-weight: 700;
    color: #333;
}

.lang-selector {
    color: #0076bf;
    font-weight: 700;
    cursor: pointer;
    font-size: 15px;
    text-transform: uppercase;
}

.main-content {
    flex-grow: 1;
    padding-top: 35px;
    padding-bottom: 40px;
}

.content-container {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    gap: 15px;
}
.monitor-icon-wrapper {
    position: relative;
    color: #0076bf;
    height: 40px;
    width: 45px;
    flex-shrink: 0;
}
.monitor-icon {
    font-size: 40px;
}
.phone-icon-small {
    position: absolute;
    bottom: -2px;
    right: -6px;
    font-size: 20px;
    background-color: #EBF6FC;
    border-radius: 4px;
    padding: 0 2px;
    color: #0076bf;
}
.page-title {
    font-size: 26px;
    color: #003057;
    font-weight: 400;
}

.main-grid {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.left-column {
    width: 50%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.right-column {
    width: 50%;
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.white-card {
    background: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    padding: 25px;
    border: 1px solid #e5e5e5;
}

.chameleon-card {
    display: flex;
    flex-direction: column;
}
.card-title-blue {
    color: #003057;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 15px;
}

.chameleon-full-image {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.chameleon-full-image img {
    max-width: 100%;
    height: auto;
    max-height: 200px;
    object-fit: contain;
}

.login-card-wrapper {
    padding: 0;
    border: 1px solid #e5e5e5;
    overflow: hidden;
}

.login-tabs {
    display: flex;
    border-bottom: 1px solid #e0e0e0;
}
.tab {
    flex: 1;
    text-align: center;
    padding: 16px 0;
    font-size: 14px;
    cursor: pointer;
}
.tab.active {
    background-color: #fff;
    color: #333;
    font-weight: 700;
    border-top: 3px solid transparent;
}
.tab.inactive {
    background-color: #f2f2f2;
    color: #0076bf;
    font-weight: 500;
    border-top: 1px solid #e0e0e0;
    border-left: 1px solid #e0e0e0;
}

.login-body {
    padding: 30px 35px;
}

.form-row {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.form-row label {
    width: 130px;
    flex-shrink: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    text-align: left;
}

.input-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}
.input-wrapper input {
    flex-grow: 1;
    width: 100%;
    height: 38px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}
.input-wrapper input:focus {
    border-color: #009FE3;
}
.help-icon {
    color: #0076bf;
    font-size: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}
.forgot-link {
    font-size: 13px;
    font-weight: 500;
}
.btn-login {
    background-color: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 11px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
}
.btn-login:hover {
    background-color: #e55e00;
}

.login-bottom-links {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 5px 0;
}
.login-bottom-links a {
    font-size: 13px;
    font-weight: 500;
    color: #0076bf;
}

.security-card {
    border-top: 4px solid #cc0000;
}
.security-content {
    display: flex;
    gap: 15px;
}
.security-text {
    flex: 1;
}
.red-title {
    color: #cc0000;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
}
.security-text p {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 400;
}
.security-link {
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}
.fraud-report {
    font-size: 12px;
    font-weight: 700;
}
.red-text {
    color: #cc0000;
}
.security-image img {
    width: 80px;
    height: auto;
}

.app-downloads-container {
    text-align: center;
    margin-top: 15px;
}
.app-downloads-container p {
    margin-bottom: 15px;
    color: #333;
    font-size: 13px;
    font-weight: 400;
}
.badges {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.badges img {
    height: 42px;
    cursor: pointer;
}

.footer {
    padding: 40px 0 60px;
    margin-top: auto;
    border-top: 1px solid #dcdcdc;
}
.footer-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: flex-start;
    gap: 50px;
    font-size: 12px;
    color: #666;
}
.footer-copyright {
    flex: 0 0 260px;
}
.footer-links-grid {
    display: flex;
    gap: 70px;
}
.footer-links-grid .col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.footer-links-grid a {
    color: #0076bf;
    text-decoration: none;
    font-weight: 400;
}
.footer-links-grid a:hover {
    text-decoration: underline;
}

/* --- Step 2  --- */

.step-2-container {
    display: flex;
    justify-content: flex-start;
}

.confirmation-card {
    width: 100%;
    max-width: 580px;
    padding: 30px;
}

.mb-20 {
    margin-bottom: 25px;
}

.step2-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    margin-bottom: 25px;
}

.step2-tab {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    color: #0076bf;
    background-color: #f9f9f9;
    border-bottom: 3px solid transparent;
    transition: all 0.2s;
}

.step2-tab.active {
    background-color: #fff;
    color: #333;
    font-weight: 700;
    border-bottom: 3px solid #ff6a00;
}

.step2-tab:hover {
    background-color: #f2f2f2;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.data-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
}

.data-label {
    color: #333;
    font-weight: 400;
}

.data-value {
    color: #000;
    font-weight: 700;
}

.info-box-blue {
    margin-top: 25px;
    border: 1px solid #0076bf;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #fff;
}

.info-icon {
    color: #0076bf;
    font-size: 20px;
    margin-top: 2px;
}

.info-text {
    font-size: 13px;
    color: #333;
    line-height: 1.4;
}

.sms-info-box {
    border: 1px solid #0076bf;
    padding: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background-color: #fff;
    margin-bottom: 25px;
}

.sms-info-icon {
    color: #0076bf;
    font-size: 20px;
    margin-top: 2px;
}

.sms-info-text {
    font-size: 13px;
    color: #333;
    line-height: 1.5;
}

.sms-info-text p {
    margin: 0;
}

.sms-code-row {
    display: flex;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 25px;
}

.sms-label {
    width: 100px;
    flex-shrink: 0;
    color: #333;
    font-size: 14px;
    font-weight: 500;
}

.sms-input-wrapper {
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sms-input {
    flex-grow: 1;
    height: 38px;
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 2px;
    font-size: 15px;
    outline: none;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.05);
}

.sms-input:focus {
    border-color: #009FE3;
}

.step-2-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 25px;
}

.sms-footer {
    display: flex;
    justify-content: space-between;
    margin-top: 25px;
}

.btn-secondary {
    background-color: #2670a8;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 10px 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    min-width: 90px;
    transition: background-color 0.2s;
}

.btn-secondary:hover {
    background-color: #1e5a87;
}

.btn-orange {
    background-color: #ff6a00;
    color: #fff;
    border: none;
    border-radius: 2px;
    padding: 10px 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-orange:hover {
    background-color: #e55e00;
}
.fade-in {
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 850px) {
    .main-grid {
        flex-direction: column;
    }
    .left-column, .right-column {
        width: 100%;
    }
    .form-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .form-row label {
        margin-bottom: 8px;
    }
    .header-container, .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .header-right {
        width: 100%;
        justify-content: space-between;
    }
    .footer-links-grid {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .step-2-container {
        justify-content: center;
    }
    .confirmation-card {
        max-width: 100%;
    }
    .sms-code-row {
        flex-direction: column;
        align-items: flex-start;
    }
    .sms-label {
        margin-bottom: 8px;
    }
}

/* --- Step 3 --- */
.success-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 500px;
    padding: 20px;
    overflow: hidden;
}

.success-full-image {
    width: auto;
    height: 300%;
    max-width: 300%;
    object-fit: contain;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .success-full-image {
        height: 200%;
        max-width: 200%;
    }
}