html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-size: 14px;
    overflow-x: hidden;
}

body {
    display: flex;
    flex-direction: column;
    font-family: "Titillium Web", sans-serif !important;
}

main {
    flex: 1;
}

p {
    font-size: 16px;
    font-family: "Titillium Web", sans-serif !important;
}

.navbar {
    padding: 1rem 1.5rem;
    background-color: #FFFFFF;
}

.navbar .li {
    padding-inline: 15px;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: #1a1a1a;
}

.navbar-nav .nav-link {
    color: #0D134C;
    font-weight: 700;
    margin-right: 1rem;
    transition: color 0.2s;
    font-size: 16px;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding-inline: 22px !important;
}

.navbar-nav .nav-link:hover {
    color: #007bff;
}

.navbar-nav .nav-link.active {
    color: #007bff;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-button {
    background-color: #007bff;
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: background-color 0.3s;
}

.nav-button:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

.nav-button-border {
    border: 1px solid #007bff;
    color: #0D134C;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
    background-color: white;
}

.nav-button-border:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .nav-buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav-button {
        width: 100%;
        text-align: center;
    }

    .nav-button-border {
        width: 100%;
        text-align: center;
    }
}

.secondary-button {
    background-color: #007bff;
    color: white;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    transition: background-color
}

.secondary-button:hover {
    background-color: #0056b3;
    color: #fff;
    text-decoration: none;
}

#main-page {
    padding-top: 100px;
}

/**/
.main-title {
    font-size: 50px;
    font-weight: 700;
    color: #0D134C;
}

.main-title-white {
    font-size: 50px;
    font-weight: 700;
    color: #ffffff;
}

.secondary-title-wrap {
    max-width: 80%;
    padding-bottom: 30px;
    padding-top: 50px;
    justify-self: center;
}

.secondary-title {
    font-size: 30px;
    font-weight: 700;
    color: #0D134C;
}

.small-title {
    font-size: 20px;
    font-weight: 700;
    color: #0D134C;
}

#home-section1 {
    padding-bottom: 50px;
}

#home-section1-video {
    background-color: rgba(218, 234, 245, 0.238);
    padding-bottom: 50px;
}

.video-container {
    max-width: 800px;
    margin: 0 auto;
    z-index: 100;
}

.video-container iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
}

.home-section1-logo_wrapper {
    margin-top: 60px;
    display: flex;
    flex-direction: column;
    gap: 17px;
    list-style: none;
}

@media (max-width: 767px) {
    .home-section1-logo_wrapper {
        margin: 10px 0;
        align-items: center;
        gap: 11px;
    }

    .welcome-message h1 {
        font-size: 30px !important;
        margin-bottom: 10px;
    }
}

.home-section1-logo_wrapper.home-section1-logo_wrapper li:not(:first-child) {
    margin-top: 0;
}

.home-section1-logo_wrapper-checklist {
    list-style: none;
    margin: 0 !important;
    padding: 0;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    gap: 39px !important;
    flex-wrap: wrap;
}

.home-section1-logo_wrapper-checklist:has(li:nth-child(4)) {
    gap: 20px !important;
}

.home-contact_image {
    background-image: url('/img/globe_vector.jpg');
    background-color: black;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 600px;
}

.contact_details {
    padding-top: 50px;
    text-align: center;
}

@media (max-width: 767px) {
    .home-section1-logo_wrapper-checklist {
        gap: 26px;
        justify-content: center;
    }

    .home-section1-logo_wrapper-checklist:has(li:nth-child(4)) {
        gap: 10px 20px !important;
        margin-top: 10px !important;
    }
}

.home-section1-logo_wrapper-checklist li {
    --check-icon-size: 18px;
    position: relative;
    padding-left: calc(var(--check-icon-size) + 6px);
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.38;
    color: var(--color-blue);
    display: inline-block;
}

@media (max-width: 767px) {
    .home-section1-logo_wrapper-checklist li {
        --check-icon-size: 10px;
        padding-left: calc(var(--check-icon-size) + 4px);
        font-size: 11px;
        color: #06164A;
    }
}

.home-section1-logo_wrapper-checklist img {
    width: 90px;
    height: 30px;
}

.home-section1-logo_wrapper-checklist li b,
.home-section1-logo_wrapper-checklist li strong {
    font-weight: 700;
}

.home-section1-logo_wrapper-checklist li:before {
    content: "";
    width: var(--check-icon-size);
    height: var(--check-icon-size);
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.20465' cy='8.20465' r='8.20465' fill='%232998FF'/%3E%3Cpath d='M4.10229 8.20461L6.83718 10.9395L12.3069 5.46973' stroke='white' stroke-width='2.05116' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    clip-path: none !important;
    border-radius: 50%;
}

@media (max-width: 767px) {
    .home-section1-logo_wrapper-checklist li:before {
        background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8.20465' cy='8.20465' r='8.20465' fill='%2306164A'/%3E%3Cpath d='M4.10229 8.20461L6.83718 10.9395L12.3069 5.46973' stroke='white' stroke-width='2.05116' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    }
}

#home-section1-accordion {
    padding-top: 20px;
}

.tablinks {
    padding: 10px 20px;
    border: none;
    color: #0D134C;
    font-size: 24px;
    background-color: white;
}

.tablinks:hover {
    background-color: #007bff;
    color: white;
    border-radius: 999px;
}

.tablinks.active {
    background-color: #007bff;
    color: white;
    border-radius: 999px;
}

.tablink-list-item {
    margin-bottom: 10px;
    font-size: 16px;
}

.accordion-tab {
    display: flex;
    gap: 20px;
    justify-content: center;
    padding-top: 20px;
}

.tabcontent {
    padding-top: 100px;
}

.tabcontent-title {
    font-size: 35px;
    font-weight: 500;
}

.tabcontent-text p {
    padding-top: 20px;
    padding-bottom: 20px;
}

#home_statistics_section {
    margin-top: 50px;
    margin-bottom: 50px;
}

.section-numbers__inner {
    background-color: #0c670c;
    padding: 64px;
    gap: 72px;
    inset: 0;
    border-radius: 8px;
    text-align: center;
}

.section-numbers__title {
    font-size: 36px;
    font-weight: 300;
    line-height: 1.15;
    color: white;
}

.section-numbers__listItem-number {
    font-size: 48px;
    font-weight: 600;
    color: white;
}

.section-numbers__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 40px;
    margin: 0 auto;
    margin-top: 70px;
    max-width: 800px;
}

.section-numbers__listItem-title {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.15;
    margin-top: 0.33em;
}

.section-numbers__buttons {
    padding-top: 80px;
}

.section-numbers__title {
    align-items: center;
}

.home_guidance_text {
    font-size: 14px;
}

.home_guidance_title {
    font-size: 22px;
}

.icon-box-steps {
    padding: 10px 0;
}

/*steps to register styles*/
#home_guidance_section {
    padding: 50px 0;
    background-color: rgba(218, 234, 245, 0.238);
}

.headings .home_span {
    color: red;
    font-style: italic;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/*contact form - home page*/
.form-wrapper {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1s ease-out;
    margin-top: 50px;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.form-column {
    flex: 1;
    min-width: 250px;
}

.contact-form-label {
    display: block;
    color: #333;
    font-size: 14px;
    margin-bottom: 5px;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    transition: border-color 0.3s, transform 0.3s;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #6f6df4;
    outline: none;
    transform: scale(1.02);
}

.form-textarea {
    resize: none;
}

.submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #6f6df4, #4c46f5);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.submit-button:hover {
    background: linear-gradient(135deg, #4c46f5, #6f6df4);
    transform: scale(1.05);
}

/*FOOTER*/
footer {
    color: var(--white);
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    background-color: #0D134C;
    padding-top: 2rem;
}

.footer-list {
    color: white;
}

.footer__social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #fff0;
    color: var(--white);
    border-radius: 0.35rem;
    transition: var(--transition-ease);
}

.footer__content {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    padding: 0rem 5rem 1.5rem;
    gap: 1.5rem;
    width: 100%;
    max-width: 1750px;
}

.footer__content,
footer {
    display: flex;
    position: relative;
}

.footer__social-logo {
    max-width: 250px;
}

.footer__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    max-width: 400px;
}

.footer__locations-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.footer__locations {
    max-width: 400px;
    width: 100%;
    position: relative;
}

.footer__quick_links {
    -webkit-box-flex: 0.75;
    -ms-flex: 0.75;
    flex: 0.75;
    position: relative;
    min-width: 200px;
}

.footer-bottom {
    margin: 0;
    padding: 0rem 5rem 1.5rem;
    justify-content: space-between;
    width: 100%;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.power-by {
    display: flex;
    align-items: center;
}

.footer_quick-link a {
    color: white;
    text-decoration: none;
}

.footer-list {
    list-style-type: none;
    font-size: 16px;
}

.power-links {
    display: flex;
    align-items: center;
    gap: 20px;
    color: rgb(255, 255, 255);
}

.power-links a {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.footer__locations-title,
.quick_links-title {
    padding: 10px;
    font-weight: 700;
}

.footer-list li {
    margin-bottom: 10px;
}

.footer__social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    text-align: center;
    line-height: 40px;
    border: 1px solid #fff0;
    color: var(--white);
    border-radius: 0.35rem;
    transition: var(--transition-ease);
    background-color: #017BFB;
}

/*Email Input container*/
.input-container {
    position: relative;
    display: flex;
    height: 2.8rem;
    width: 100%;
    min-width: 200px;
    max-width: 250px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, .05);
}

.input-container input {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgb(176 190 197);
    background-color: transparent;
    padding: 0.625rem 70px 0.625rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 400;
    color: rgb(69 90 100);
    outline: none;
    transition: all .15s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-container input:focus {
    border: 1px solid rgb(236 72 153);
}

.invite-btn {
    position: absolute;
    width: 65px;
    right: 4px;
    top: 4px;
    bottom: 4px;
    z-index: 10;
    border-radius: 4px;
    background-color: rgb(236 72 153);
    color: #fff;
    padding-top: .25rem;
    padding-bottom: .25rem;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    text-align: center;
    vertical-align: middle;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    border: none;
    transition: .6s ease;
}

.invite-btn:hover {
    right: 2px;
    top: 2px;
    bottom: 2px;
    border-radius: 8px;
}

.input-container input:placeholder-shown~.invite-btn {
    pointer-events: none;
    background-color: gray;
    opacity: 0.5;
}

/*Solution Page*/
#solution_header {
    background-image: url('../img/services-header.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 700px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    position: relative;
    color: white;
}

.solution_wrapper {
    z-index: 100;
    max-width: 800px;
}

.solution_header_container {
    max-width: 1000px;
    margin-right: auto;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 8px;
}

.solution_box_icon {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    border-radius: 999px;
    background-color: #007BFE;
    transition: all 0.3s ease;
}

.solution_box_icon:hover {
    background-color: #ffffff;
    transform: translateY(-15px);
    transition: all 0.3s ease;
}

.solution_box_image {
    width: 35px;
}

#solution_boxes {
    margin-top: 100px;
}

.solution_box_text p {
    margin: 0;
    line-height: 1.4;
    color: #6a6a6a;
}

.solution_box_text h4 {
    font-weight: 700;
    padding-bottom: 10px;
}

.solution_box {
    display: flex;
    gap: 25px;
    align-items: center;
    padding: 20px;
    max-width: 400px;
}

.secondary_wrapper {
    margin-top: 100px;
}

.left_container {
    background-image: url('../img/shutterstock_2436779993.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 500px;
    border-radius: 8px;
    margin-left: 15px;
    z-index: 8;
    position: relative;
}

.right_container {
    background-color: #fff;
    margin-left: -30px;
}

.right_container_header {
    background-color: rgb(227, 242, 247);
    padding: 20px;
}

.medium_title {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
}

.right_container_grid> :first-child {
    padding-left: 20px;
}

.right_container_grid_item {
    border-right: 1px solid rgb(186, 184, 184);
    padding: 30px;
}

/* AUTH WRAPPER AND CONTAINER */
.auth-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-image: url('/img/shutterstock_2221100941.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.auth-container {
    display: flex;
    max-width: 1000px;
    width: 100%;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    align-items: stretch;
}

/* Left Panel - Dark */
.auth-left {
    flex: 0 0 40%;
    background: #1a365d;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    position: relative;
}

/* Right Panel - White */
.auth-right {
    flex: 0 0 60%;
    padding: 60px 50px;
    background: white;
    position: relative;
}

/* Logo Alignment and Sizing - FIXED */
.auth-logo {
    margin-bottom: 30px;
    text-align: center;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-logo img {
    max-width: 150px !important;
    max-height: 60px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block;
    margin: 0 auto;
}

/* Spinner */
.spinner {
    border: 2px solid #f3f3f3;
    border-top: 2px solid white;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    vertical-align: middle;
    margin-left: 8px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.sectinel-alert {
    margin-bottom: 20px;
    padding: 12px;
    border-radius: 6px;
    background-color: #fee;
    border: 1px solid #fcc;
}

.sectinel-validation-error {
    display: block;
    margin-top: 5px;
    font-size: 13px;
}

.auth-tagline {
    text-align: center;
    margin-bottom: 40px;
}

.auth-tagline p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.sectinel-features {
    width: 100%;
    margin-top: 30px;
}

.sectinel-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sectinel-feature-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.sectinel-feature-content {
    flex: 1;
}

.sectinel-feature-text {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

.auth-header {
    text-align: center;
    margin-bottom: 40px;
}

.auth-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.auth-header p {
    font-size: 14px;
    color: #7f8c8d;
    margin: 0;
}

.auth-header a {
    color: #5865f2;
    text-decoration: none;
    font-weight: 600;
}

.auth-header a:hover {
    text-decoration: underline;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: all 0.3s;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: #5865f2;
    box-shadow: 0 0 0 3px rgba(88, 101, 242, 0.1);
}

.form-control::placeholder {
    color: #aaa;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    font-size: 14px;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-check input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.form-check label {
    color: #2c3e50;
    margin: 0;
    cursor: pointer;
}

.forgot-link {
    color: #5865f2;
    text-decoration: none;
    font-weight: 600;
}

.forgot-link:hover {
    text-decoration: underline;
}

.btn-primary-custom {
    width: 100%;
    padding: 15px;
    background: #5865f2;
    border: none;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary-custom:hover {
    background: #4752c4;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

.footer_section_title {
    font-weight: bold;
}

.footer_policy_title {
    text-align: center;
    font-weight: bold;
    margin-top: 30px;
}

.login_height {
    min-height: 100vh;
}

.welcome-message h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.welcome-message p {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.feature-icon {
    font-size: 1.5rem;
    margin-right: 15px;
}

.feature-text h3 {
    margin: 0;
    font-size: 1.1rem;
}

.feature-text p {
    margin: 5px 0 0;
    opacity: 0.8;
    font-size: 18px;
}

.cta {
    margin-top: 30px;
}

.cta a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

#about_header {
    background-color: #007bff49;
    color: white;
    padding: 50px 50px 10px 50px;
}

.about_image {
    background-image: url('../img/shutterstock_1695247384.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 300px;
}

.five-column-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    list-style: none;
    padding: 0;
    margin-top: 100px;
}

.footer_flex {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.footer__content,
.footer_flex,
.footer__locations,
.footer__quick_links,
.footer-list,
.footer_quick-link {
    box-sizing: border-box;
    max-width: 100%;
    overflow-wrap: break-word;
    word-break: break-word;
}

@media (max-width: 768px) {
    .auth-container {
        flex-direction: column;
    }

    .auth-left {
        flex: 0 0 auto;
        padding: 40px 30px;
    }

    .auth-right {
        flex: 0 0 auto;
        padding: 40px 30px;
    }

    .auth-header h2 {
        font-size: 24px;
    }

    .user_guide_container {
        text-align: center;
        font-family: "Titillium Web", sans-serif !important;
    }

    .footer__content,
    footer {
        display: block !important;
    }

    .footer__content {
        padding: 1rem 1rem 1rem;
    }

    .footer__social-icons a {
        width: 35px;
        height: 35px;
    }

    .small-title {
        font-size: 20px !important;
    }

    p {
        font-size: 14px !important;
    }

    .li {
        font-size: 14px !important;
    }

    .footer__locations-title,
    .quick_links-title {
        margin-top: 20px;
    }

    .footer_flex {
        align-items: flex-start;
    }

    .footer__locations,
    .footer__quick_links {
        width: 100%;
        margin-bottom: 20px;
    }

    .footer-list {
        width: 180px;
        padding-left: 10px;
    }

    .footer-list li {
        font-size: 13px;
    }

    .footer__social-icons a {
        background-color: #eb0b0b;
    }

    .login_container {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .footer-bottom {
        padding: 0 1rem 1rem;
    }

    .footer-row {
        display: block;
    }

    .power-by {
        display: block;
        padding-bottom: 10px;
    }

    .power-links {
        justify-content: center;
    }
}

@media (max-width: 1020px) {
    .footer__content {
        padding: 1rem 1rem 1rem;
    }

    .login_height {
        min-height: 100vh;
    }

    .footer-row {
        display: block;
    }

    .footer__content,
    footer {
        display: block !important;
    }

    .footer__social {
        padding-bottom: 30px;
    }

    .footer-bottom {
        padding: 0 1rem 1rem;
    }

    .footer-row {
        display: block;
    }

    .power-by {
        display: block;
        padding-bottom: 10px;
    }

    .power-links {
        justify-content: center;
    }
}

@media (max-width: 920px) {
    .footer__content {
        padding: 1rem 1rem 1rem;
    }

    .footer-row {
        display: block;
    }

    .login_height {
        min-height: 100vh;
    }

    .footer__content,
    footer {
        display: block !important;
    }

    .footer__social {
        padding-bottom: 30px;
    }

    .footer-bottom {
        padding: 0 1rem 1rem;
    }

    .footer-row {
        display: block;
    }

    .power-by {
        display: block;
        padding-bottom: 10px;
    }

    .power-links {
        justify-content: center;
    }
}

@media (max-width: 1224px) {
    .footer__content {
        padding: 1rem 1rem 1rem;
    }

    .footer__social {
        padding-bottom: 30px;
    }

    .login_height {
        min-height: 100vh;
    }

    .footer-bottom {
        padding: 0 1rem 1rem;
    }

    .footer-row {
        display: block;
    }

    .power-by {
        display: block;
        padding-bottom: 10px;
    }

    .power-links {
        justify-content: center;
    }
}