body {
    margin: 0;
    padding: 0;
    font-family: 'Figtree', sans-serif;
    background-color: #f0f0f0;
    color: #333;
    height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background-color: #f0f0f0;
    height: 100px; /* Increased height */
    color: black;
    width: 100%;
    top: 0;
    left: 0;
    display: flex;
}

.header-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 90px;
    margin-right: 10px;
}

.slogan {
    display: flex;
    align-items: center;
}

.slogan h1 {
    margin: 0;
}
button {
    background-color: #000;
    color: #fff;
    border: none;
    padding: 10px 20px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: block;
    margin: 20px auto 0 auto;
}

button:hover {
    background-color: #333;
}
.signUp-container {
    display: flex;
    position: relative;
    flex: 1;
    min-height: 82%;
    background-color: #ffffff;
    justify-content: center;
    align-items: center;
    padding: 20px 10%;
    box-sizing: border-box;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.left-side {
    flex: 1;
    padding: 20px;
    max-width: 60%;
    z-index: 1000;
}

.left-side h1 {
    margin: 0;
    font-size: 56px;
}

.left-side p {
    margin-top: 10px;
    font-size: 26px;
    color: #666;
}

.signUp-box {
    flex: 1;
    max-width: 500px;
    height: auto;
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
    margin-left: 20px;
}

.signUp-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    background: #e0e0e0;
    z-index: 0;
    transform: skewX(-50deg);
    transform-origin: left;
}

input[type=text],
input[type=email],
input[type=password],
select {
    width: 95%;
    padding: 10px;
    margin-bottom: 10px; /* Adjusted to match the spacing */
    border: 1px solid #ddd;
    border-radius: 4px;
}

.terms {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.terms label {
    margin-left: 5px;
}
.ship-container {
    height: 100%;
    width: 100%;
}
.form-group {
    margin-bottom: 15px;
}
label {
    display: block;
    margin-bottom: 5px;
}
input[type=text],
select {
    width: 95%;
    padding: 10px;
    margin-bottom: 1px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
.row {
    display: flex;
    justify-content: space-between;
}
.row > .form-group {
    flex-basis: 46%; /* Adjust this value to increase/decrease the space between the inputs */
}
#stateBox {
    margin-left: 20px;
}
#zipBox {
    margin-right: 17px;
}
#lastNameBox {
    margin-right: 15px;

}
#countryBox {
    padding-right: 20px;
}
.progress-bar-container {
    position: relative;

    width: 70%;
    background-color: #b5b5b5;
    border-radius: 5px;
    overflow: hidden;
    margin-top: 20px;
    overflow: hidden;
    height: 10px; /* Adjust as needed */


}

.progress-bar {
    width: 0;
    height: 100%;
    background-color: #4caf50;
    border-radius: 5px;
    transition: width 0.4s ease;
}
.progress-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.marker {
    position: absolute;
    top: 0;
    width: 2px; /* Adjust as needed */
    height: 100%;
    background-color: rgb(111, 111, 111); /* Adjust as needed */
}
@media (max-width: 768px) {
    header {
        height: 70px; /* Reduce the height */
    }
    .slogan {
        font-size: 10px;
    }
    .logo img {
        height: 60px; /* Scale down the logo */
        margin-right: 5px;
    }
    .signUp-container {
        flex-direction: column; /* Stack the sections vertically */
        padding: 20px 5%; /* Adjust padding to suit the new layout */
        min-height: 110vh;
        justify-content: flex-start; /* Align items to the top */

    }

    .left-side, .signUp-box {
        max-width: 100%; /* Make both sections take up full width */
        margin: 0; /* Remove the left margin from the signUp-box */
    }
    .signUp-box {
        max-height: auto;

        align-self: flex-start; /* Ensure the box stays aligned at the top */

    }
    .left-side {
        text-align: center; /* Center text for a more balanced look */
        margin-bottom: 20px; /* Add space between the left-side text and form */
        max-height: 180px;
    }
    .left-side h1 {
        font-size: 45px;
    }
    .left-side p {
        font-size: 20px;
    }

    .progress-bar-container {
        width: 100%; /* Make the progress bar full width */
        margin: 20px auto; /* Center it and add space above */
    }
    .signUp-container::before {
        display: none;
    }
}