
@font-face {
    font-family: 'Lato';
    src: url('./fonts/Lato-Regular.ttf') format('truetype'),
         url('./fonts/Lato-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Lato';
    src: url('./fonts/Lato-Bold.ttf') format('truetype'),
         url('./fonts/Lato-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Lato', sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigation Bar */
.main-section {
 /* 1440px */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.menu-bar {
    position: fixed;
    z-index: 10;
    width: 100%;
    height: 8.375rem;
    background: #FFFFFF;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.25rem 0.0625rem; /* 20px 1px */
    max-width: 86.9375rem; /* 1391px */
}

.email-input {
    width: 76%;
    border-radius: 0.625rem; /* 10px */
    border: 1px solid #ccc;
    display: flex;
    align-items: center;
    margin-top: 0.5rem; /* 8px */
}

.email-input::placeholder {
    color: #aaa;
    font-size: 1rem; /* 16px */
    padding-left: 0.625rem; /* 10px */
}

.highlight-text {
    display: none;
}

.logo img {
    /* width: 100%;
    height: 100%; */
    border-radius: 6.25rem; /* 100px */
}

.menu-items {
    display: flex;
    gap: 3.4375rem; /* 55px */
    align-self: flex-end;
    margin-right: 6rem;
    list-style: none; /* Remove bullet points */
}

.menu-items a {
    text-decoration: none; /* Remove underline from links */
    color: inherit; /* Inherit text color from parent */
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease-in-out;
}
.menu-items li a:hover {
    color: #36B6F7 !important; /* Forces text color change even on Sign Up */
}

.menu-icon {
    display: none;
  
}

/* Hamburger Menu - Initially Hidden */
.hamburger-menu {
    display: none; /* Hide by default */
    flex-direction: column;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 2.5rem; /* Width of the bars in rem */
    height: 0.3rem; /* Height of the bars in rem */
    margin: 0.4rem; /* Margin between bars in rem */
    background-color: #333;
}

/* Main Container */
.main-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    /* width: 100%; */
    max-width: 90rem; 
    padding-top: 9.375rem; /* 150px */
    padding-left: 1.5625rem; /* 25px */
    padding-right: 1.5625rem; /* 25px */
}

/* Left Section */
.left-content {
    width: 52%;
    padding: 0.9375rem 2.5rem; /* 15px 40px */
    background: linear-gradient(
        to bottom,  
        rgba(49, 181, 248, 0.08) 0%,   
        rgba(49, 181, 248, 0.05) 20%,  
        rgba(49, 181, 248, 0.03) 35%, 
        rgba(255, 255, 255, 1) 80%    
    );
    text-align: center;
}

.left-content h1 {
    font-size: 2.125rem !important; /* 34px */
    line-height: 1.2;
    color: #000;
    text-align: left;
    margin-left: 1.75rem; /* 28px */
}

.highlight {
    color: #36B6F7;
}

.left-content > img {
    width: 89%;
    height: 23.0625rem;
    border-radius: 0.9375rem; /* 15px */
    margin-top: 1.25rem; /* 20px */
    box-shadow: -0.625rem 1.25rem 1.875rem rgba(54, 183, 247, 0.2), 
         1.25rem 1.25rem 1.875rem rgba(54, 183, 247, 0.35);
    margin-left: -1.5rem; /* -24px */
    object-fit: cover;
}

/* Right Section */
.right-content {
    width: 48%;
    padding: 1.25rem; /* 20px */
    text-align: center;
    background-color: #fff;
}

.mini-logo {
    width: 28%;
    margin-bottom: 3.4375rem; /* 55px */
}

.form-container h2 {
    font-size: 1.3125rem; /* 21px */
    margin-top: 0.625rem; /* 10px */
    letter-spacing: -0.004375rem;
    line-height: 1.2;
    width: 76%;
    text-align: left;
    margin-bottom: 0.625rem; /* 10px */
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.form-container p {
    font-size: 1rem; /* 16px */
    color: #000000;
    line-height: 1.2em;
    letter-spacing: -0.004375rem;
    width: 76%;
}

input[type="email"] {
    /* width: 76%; */
    border: none;
    font-size: 1.1875rem; /* 19px */
    padding-top: 0.75rem; /* 12px */
    padding-bottom: 0.9375rem; /* 15px */
}

input[type="email"]:focus {
    border: none;
    outline: none;
}

.email-img {
    padding-left: 0.625rem; /* 10px */
    padding-top: 0.125rem; /* 2px */
}


.send-code {
    width: 76%;
    padding: 0.75rem; /* 12px */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px */
    cursor: pointer;
    font-size: 1.25rem; /* 20px */
}

.send-code:hover {
    background: #36B6F7;
}

.send-code-div {
    margin-top: 0.625rem; /* 10px */
    margin-bottom: 0.6875rem; /* 11px */
    width: 100%;
}



.login-text {
    margin-top: 1.25rem; /* 20px */
    margin-bottom: 0.5625rem; /* 9px */
    font-size: 1rem !important; /* 16px */
    line-height: 1.3 !important;
    /* width: 47% !important; */
}

.login-text a {
    color: #36B6F7;
    text-decoration: none;
    font-size: 1rem !important; /* 16px */
    line-height: 1.3 !important;
}

.or {
    margin: 1.25rem 0; /* 20px */
    font-size: 1rem; /* 16px */
    line-height: 1.3em;
    color: rgba(0,0,0,.5);
}

.terms-section {
    /* width: 100%; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.25rem; /* 20px */
    margin-top: 32.75rem; /* 60px */
}

.terms-section p {
    width: 81% !important;
    text-align: left;
    white-space: normal;
    word-wrap: break-word;
    line-height: 1.3em;
    font-size: 1.25rem; /* 20px */
}

.terms-section a {
    color: #36B6F7;
}

.google-login {
    width: 76%;
    padding: 0.75rem; /* 12px */
    border: 1px solid #ccc;
    background: #fff;
    border-radius: 0.625rem; /* 10px */
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem; /* 20px */
}



.google-login:hover {
    background: #f0f0f0;
}

/* Trusted By Section */
.trusted-by {
    text-align: center;
    padding: 2.5rem; /* 40px */
    width: 78%;
    margin-left: 4.3125rem; /* 69px */
}

.trusted-by h2 {
    font-size: 1.5rem; /* 24px */
    margin-bottom: 1.25rem; /* 20px */
    color: #000;
}

.trusted-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.25rem; /* 4px */
    justify-content: start;
    align-items: center;
    width: fit-content;
    margin-top: 1.6875rem; /* 27px */
}

.trusted-logos img {
    height: 3.125rem; /* 50px */
    max-width: 100%;
    object-fit: contain;
}

/* Footer Section */
.copyright {
    margin-top: 2.5rem; /* 40px */
    font-size: 1rem; /* 16px */
    line-height: 1.3em;
}

.copyright a {
    color: #36B6F7;
}


/* add for second screen */

.input-container {
    display: flex;
    gap: 1.25rem; /* 20px converted to rem */
    width: 76%;
}
.input-container1 {
    margin-top: 1rem;
    display: flex;
    gap: 1.25rem; /* 20px converted to rem */
    width: 76%;
}
.name {
    width: 76%;
    padding: 0.75rem; /* 12px converted to rem */
    margin-top: 0.625rem; /* 10px converted to rem */
    margin-bottom: 0.625rem; /* 10px converted to rem */
    border-radius: 0.625rem; /* 10px converted to rem */
    border: 1px solid #ccc;
}

.second_next_mdiv {
    width: 76%;
}

.second_next {
    width: 100%;
    padding: 0.75rem; /* 12px converted to rem */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}

.second_next:hover {
    background: #36B6F7;
}

.nextbutton {
    margin-top: 8.6rem; /* 117px converted to rem */
}

/* add for Third screen */

.username {
    width: 76%;
    padding: 0.75rem; /* 12px converted to rem */
    margin-top: 0.625rem; /* 10px converted to rem */
    margin-bottom: 0.625rem; /* 10px converted to rem */
    border-radius: 0.625rem; /* 10px converted to rem */
    border: 1px solid #ccc;
    font-size: 1.25rem; /* 20px converted to rem */
}

.p_third {
    text-align: left;
    color: #36B6F7 !important;
    font-size: 1rem !important; /* 16px converted to rem */
}

.third_checkbox {
    margin-top: 1rem;
    margin-bottom: 1.625rem; /* 26px converted to rem */
    width: 76%;
    display: flex;
    text-align: left;
   
}

.third_checkbox p {
    margin-left: 1.5625rem; /* 25px converted to rem */
    font-size: 1.25rem !important; /* 20px converted to rem */
    width: 100%;
}

.third_next {
    width: 100%;
    padding: 0.75rem; /* 12px converted to rem */
    /* 30px converted to rem */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}

.third_next-div {
    margin-top: 1.3rem;
    width: 76%;
}

.send-code:hover {
    background: #36B6F7;
}

/* add for fourth screen */

.p_fourth {
    text-align: left;
    color: #000000 !important;
    font-size: 1.25rem !important; /* 20px converted to rem */
    font-weight: bold;
}

.fourth_radio {
    margin-top: 0.625rem; /* 10px converted to rem */
    margin-bottom: 1.125rem; /* 18px converted to rem */
    width: 76%;
    text-align: left;
}

.fourth_radio label {
    display: block; /* Ensures each label takes a full line */
    margin-bottom: 0.625rem; /* 10px converted to rem */
    font-size: 1.25rem; /* 20px converted to rem */
    color:#999999;
}

.fourth_radio input {
    margin-right: 0.625rem; /* 10px converted to rem */
}

.fourth_next {
    width: 100%;
    padding: 0.75rem; /* 12px converted to rem */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}

.fourth_next-div {
    width: 76%;
    margin-top: 0.375rem;
}

/* add for fifth screen */

.p_fifth {
    text-align: left;
    color: #000000 !important;
    font-size: 1rem !important; /* 16px converted to rem */
}

.upload-container {
    width: 8.875rem;
    height: 8.875rem;
    border-radius: 50%;
    /* overflow: hidden; */
    position: relative;
    cursor: pointer;
    margin-top: 3.6rem;
    margin-bottom: 1.9rem;
}

.upload-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.upload-container input {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.upload-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 50%;
}

.upload-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 1;
}

.fifth_buttons {
    display: flex;
    width: 76%;
    gap: 2.5rem; /* 40px converted to rem */
    margin-top: 0.9375rem;
}

.fifth_next {
    width : 100%;
    padding: 0.75rem; /* 12px converted to rem */
     /* 15px converted to rem */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}

.fifth_next1 {
    width : 100%;
    padding: 0.75rem; /* 12px converted to rem */
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}

/* add for sixth screen */

.sixth_next-div {
    width: 76%;
    margin-top: 0.9375rem;
}

.sixth_next {
    width: 76%;
    padding: 0.75rem; 
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem; /* 10px converted to rem */
    cursor: pointer;
    font-size: 1.25rem; /* 20px converted to rem */
    line-height: 1.3;
    font-weight: bold;
}


.image-container {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    /* overflow: hidden; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2rem;
    margin-bottom: 0.7rem;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.google_logo_inline {
    width: 40px;
    height: 30px;
    margin-right:8px;
    object-fit: contain;
}

.terms_police_p {
    width: 76%;
}

.trusted_by_inline_div {
    margin-bottom: 20px;
    margin-top: 40px;
    text-align: center;
    font-size: 30px;
    letter-spacing: -0.7px;
    line-height: 1.2em;
    color:rgb(33, 32, 32);
}

.form-container-div {
    width: 76%; 
    text-align: left; 
    height: 4.9375rem; /* 79px converted to rem */
    display: flex; /* Added flex for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
}

.form-container-div_p {
    text-align: left;
     /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.form-container-div_span {
    width: 100%; 
    text-align: left; 
    margin-left: 1.25rem; /* 20px converted to rem */
    display: flex; /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.first-screen_div {
    width: 76%; 
    text-align: left; 
    height: 4.9375rem; /* 79px converted to rem */
    display: flex; /* Added flex for layout */
    flex-direction: column; /* Stack children vertically */
    justify-content: center; /* Center content vertically */
}

.first-screen_h2 {
    margin-bottom: 2rem; 
    font-size: 1.875rem !important; /* 30px converted to rem */
     /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.second_screnn_h2 {
    margin-bottom: 1rem; 
    font-size: 1.875rem !important; /* 30px converted to rem */
    display: flex; /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.next_screnn_h2 {
    margin-bottom: 0; 
    font-size: 1.875rem !important; /* 30px converted to rem */
    display: flex; /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.second-screnn-input {
    width: 1.1875rem; /* 19px converted to rem */
    display: flex; /* Added flex for layout */
    align-items: center; /* Center content vertically */
}

.hidden {
    display: none;
}


/* Hide all form steps by default */
.form-container {
    position: relative;
  }
  
.form-step, .form-step1, .form-step2, .form-step3, .form-step4, .form-step5 {
    position: absolute; /* Positioning all form steps on top of each other */
    top: 15rem;
    left: 0;
    width: 100%;
    height: 100%;
    /* bottom: 40rem; */
    visibility: hidden; /* Hide the form steps */
    opacity: 0;
    transition: opacity 0.3s ease-in-out; /* Smooth transition for showing/hiding */
  }
  
  /* When the step is visible, adjust opacity and visibility */
  .form-step:not(.hidden), .form-step1:not(.hidden), .form-step2:not(.hidden), 
  .form-step3:not(.hidden), .form-step4:not(.hidden), .form-step5:not(.hidden) {
    visibility: visible;
    opacity: 1;
  }

.form-step {
  
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
}

.form-step1 {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-step2 {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-step3 {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-step4 {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.form-step5 {
  
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}


@media (max-width: 84.4rem) {
    .login-text {
        margin-top: 1.25rem;
        margin-bottom: 0.56rem;
        font-size: 1rem !important;
        line-height: 1.3 !important;
        width: 47% !important;
        font-size: 1.125rem !important;
    }
}

@media (max-width: 78.125rem) {
    .login-text {
        margin-top: 1.25rem;
        margin-bottom: 0.56rem;
        font-size: 1rem !important;
        line-height: 1.3 !important;
        width: 100% !important;
        font-size: 1.0625rem !important;
    }
}

@media (max-width: 76.06rem) and (min-width: 48rem) {
    .left-content h1 {
        font-size: 1.5rem;
    }
}

@media (max-width: 75.63rem) {
    .form-container h2 {
        font-size: 1.25rem;
        margin-top: 0.625rem;
        letter-spacing: -0.004rem;
        line-height: 1.2;
        width: 76%;
        text-align: left;
        margin-bottom: 0.625rem;
    }
    .form-container p {
        font-size: 0.875rem;
        color: #000;
        line-height: 1.2em;
        letter-spacing: -0.004rem;
        width: 76%;
    }
    input[type="email"] {
        width: 76%;
        border: none;
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    .send-code, .google-login {
        padding: 0.6875rem;
        font-size: 1.125rem;
    }
}

/* Tablet Styles (48rem - 64rem) */
@media (max-width: 67.5rem) {
    .menu-bar {
        height: 6.25rem;
        padding: 0.625rem 0.0625rem;
    }

    .menu-items {
        gap: 1.875rem;
        margin-right: 3rem;
    }

    .menu-items p {
        font-size: 1.125rem;
    }

    .trusted-by {
        width: 100%;
        margin-left: 0;
    }

    .trusted-logos {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
    }

    .left-content > img {
        margin-top: 2.1875rem;
        width: 100%;
    }

    .form-container h2, .form-container p {
        font-size: 1.125rem;
        width: 100%;
        text-align: center;
    }

    .email-input, input[type="email"], .send-code, .google-login {
        width: 90%;
    }

    .terms-section p, .copyright {
        font-size: 1rem;
    }
}

@media (max-width: 58.38rem) {
    .logo img {
        width: 80%;
        height: 90%;
        border-radius: 6.25rem;
    }

    .left-content h1 {
        font-size: 1.25rem !important;
    }

    .left-content > img {
        margin-top: 2.8125rem;
        width: 100%;
    }

    .form-container h2 {
        font-size: 1.125rem;
        width: 100%;
    }

    .form-container p {
        font-size: 0.875rem;
        text-align: center;
        width: 90%;
    }

    input[type="email"] {
        padding: 0.75rem 0;
    }

    .or {
        margin: 1.25rem 0;
    }
}

@media (max-width: 55.06rem) {
    .menu-items p {
        font-size: 1rem;
    }

    .menu-items {
        gap: 1.5rem;
        margin-right: 2rem;
    }
}

@media (max-width: 51.31rem) {
    .left-content h1 {
        font-size: 1.1875rem;
    }
}

@media (max-width: 49.44rem) {
    .menu-items p {
        font-size: 0.875rem;
    }
    .left-content h1 {
        font-size: 1.125rem;
    }
}


/* mobile.css */

/* Mobile Menu Styles */
@media only screen and (max-width: 48rem) {  /* 48rem is 768px */
    /* Hide left section */
    .left-content {
        display: none;  /* Hide the left section */
    }

    /* Ensure the right section takes full width */
    .right-content {
        width: 100%;
        padding: 5.25rem 0 0 0;
    }

    /* Mobile navigation adjustments */
    .menu-bar {
        display: flex;
        background-color: #fff;
        padding: 1rem; /* Adjust padding */
    }

    .main-container {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        /* width: 100%; */
        max-width: 90rem;
        padding-top: 1.375rem;
        padding-left: 1.5625rem;
        padding-right: 1.5625rem;
    }

    /* Menu items hidden by default on mobile */
    .menu-items {
        display: none;
        flex-direction: column;
        gap: 0rem !important;
        position: absolute;
        top: 6rem;
        left: 0;
        right: 0;
        background-color: #fff;
        /* padding: 2rem; */
        box-shadow: 0rem 0.4rem 0.6rem rgba(0, 0, 0, 0.1);
        z-index: 1;
        width: 100%;
    }

    .menu-items li {
        font-size: 1.125rem;
        text-align: center;
        border-top: 1px solid #a5a5a53b;
        height: 4rem;
        padding: 0 1rem;
        display: flex;
        justify-content: space-between;
        align-content: center;
        align-items: center;


    }

    .menu-icon {
            display: inline;
          
    }

    /* Show hamburger icon on mobile */
    .hamburger-menu {
        display: flex;  /* Show hamburger on mobile */
        cursor: pointer;
    }

    /* Show the menu when active */
    .menu-items.active {
        display: flex;  /* Show menu items when active */
    }

    /* Adjust logo size on mobile */
    .logo img {
        width: 79%;
        object-fit: contain;
    }

    /* Adjust input width */
    .form-container input[type="email"],
    .form-container input[type="text"] {
        width: 100%;  /* Ensure inputs take full width on mobile */
    }

    /* Hide small logo on mobile */
    .mini-logo {
        display: none; /* Hide the small logo on mobile */
    }

    /* Show the heading text in place of the logo on mobile */
    .highlight-text {
        display: block;
        text-align: center;
        margin-bottom: 1.5rem;
    }

    .email-input {
        margin-bottom: 1.5rem;
        margin-top: 1.5rem;
        padding: 0.0425rem;
    }

    .send-code-div {
        /* margin-top: 0.625rem; */
        margin-bottom: 0.6875rem;
        width: 100%;
    }

    .or {
        margin: 1.25rem 0;
        margin-bottom: 2.2rem;
    }

    .email-input, input[type="email"], .send-code, .google-login {
        width: 100%;
    }

    .highlight-text {
        /* display: block; */
        /* text-align: center; */
        /* font-size: 1.5rem; */
        margin-bottom: 1rem;
        text-align: left;
        width: 100%;
        letter-spacing: 0.008125rem;
        font-size: 0.8125rem;
    }

    .login-text {
        text-align: center !important;
    }

    .terms-section p, .copyright {
        font-size: 0.875rem;
        width: 100% !important;
    }

    .terms-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* align-items: center; */
        /* padding: 1.25rem; */
        margin-top: 36.75rem;
        padding: 0rem;
    }
    /* Ensure the form steps are displayed correctly */
    .form-step, .form-step1, .form-step2, .form-step3, .form-step4, .form-step5 {
        width: 100%;
        margin-top: 2rem;
    }

    .form-container h2, .form-container p {
        text-align: left;
        /* margin-right: 9px; */
    }

    .form-container-div_p {
        width: 100% !important;
    }

    /* 2 */
    .first-screen_h2 {
            font-size: 1.3125rem !important;
            margin-bottom: 1rem;
    }

    .input-container {
        display: block;
        gap: 1rem;
        width: 100%;
    }

    .input-container1 {
        margin-top: 0rem;
        display: block;
        gap: 1rem;
        width: 100%;
    }
    
   .form-container input[type="text"] {
        width: 100%;
        padding: 1.2rem;
        margin-bottom: 1.5rem;
    }

    .second_next_mdiv {
        margin-top: 1.6rem !important;
        width: 100%;
    }

    .nextbutton {
        margin-top: 0rem; /* 117px converted to rem */
    }

    .second_next {
        width: 100%;
        padding: 0.75rem;
        background: #36B6F7;
        color: #fff;
        border: none;
        border-radius: 0.625rem;
        cursor: pointer;
        font-size: 1.25rem;
        line-height: 1.3;
        font-weight: bold;
    }

    /* 3 */

    .second_screnn_h2 {
        font-size: 1.3125rem !important;
        margin-bottom: 1rem;
}

.next_screnn_h2 {
    font-size: 1.3125rem !important;
        margin-bottom: 1rem;
}

.username {
    width: 100% !important;
    padding: 0.8rem !important;
    margin-bottom: 0rem !important;
}
.p_third {
        text-align: left !important;
        width: 100% !important;
        margin-bottom: 1.5rem;
}
.third_checkbox {
	margin-top: 1rem;
	margin-bottom: 0.425rem;
	width: 100%;
	display: flex;
	text-align: left;
	/* font-size: 2px !important; */
}
.second-screnn-input {
	width: 2.5rem;
	display: flex;
	align-items: center;
	/* background-color: aquamarine; */
	color: azure;
}

.third_next-div {
	margin-top: 4.6rem !important;
	width: 100%;
	margin-bottom: 4rem;
}

.nextbutton {
    margin-top: 0rem; /* 117px converted to rem */
}

.third_next {
    width: 100%;
    padding: 1rem;
    background: #36B6F7;
    color: #fff;
    border: none;
    border-radius: 0.625rem;
    cursor: pointer;
    font-size: 1.25rem;
    line-height: 1.3;
    font-weight: bold;
}

.form-step2 {
    margin-top: 4rem !important;
}

/* 4 */

.p_fourth {
        text-align: left !important;
        width: 100% !important;
        margin-top: 2rem ;
}

.fourth_radio {
	margin-top: 1.5rem;
	margin-bottom: 1.125rem;
	width: 100%;
	text-align: left;
}

.fourth_next {
	width: 100%;
	padding: 1rem;
	background: #36B6F7;
	color: #fff;
	border: none;
	border-radius: 0.625rem;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1.3;
	font-weight: bold;
}

.fourth_next-div {
	width: 100%;
	margin-top: 2.775rem;
}

/* 5 */

.p_fifth {
    text-align: left !important;
        width: 100% !important;
        margin-bottom: 1.5rem;
}

.upload-container {
	width: 8.875rem;
	height: 8.875rem;
	border-radius: 50%;
	/* overflow: hidden; */
	position: relative;
	cursor: pointer;
	margin-top: 3.6rem;
	margin-bottom: 3.6rem;
}

.fifth_buttons {
	display: flex;
	width: 100%;
	gap: 2.5rem;
	margin-top: 0.9375rem;
}

/* 6 */

.image-container {
	width: 12rem;
	height: 12rem;
	border-radius: 50%;
	/* overflow: hidden; */
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.sixth_next-div {
	width: 100% !important;
	margin-top: 0.9375rem;
}

.sixth_next {
	width: 100%;
	padding: 0.75rem;
	background: #36B6F7;
	color: #fff;
	border: none;
	border-radius: 0.625rem;
	cursor: pointer;
	font-size: 1.25rem;
	line-height: 1.3;
	font-weight: bold;
}

}
