.signUpContainer {
    display: flex;
    height: 100vh;
    gap: 10px;
    background: #f0f0f0;
    margin: 0px;
}

.logoSection {
    background: #8bfec5;
    width: 60%;
    padding: 20px;
}

.logoSectionContent {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.backArrow {
    order: -1;
}
.backArrow2 {
    order: -1;
    display: none;
}

.signUpFormHeader {
    text-align: center;
    margin-bottom: 30px;
}

.signUpFormHeader h4 {
    font-family: "Fredoka", sans-serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 52px;
}

.signUpFormHeader p {
    font-family: "Fredoka", sans-serif;
    font-size: 30px;
    font-weight: 400;
    line-height: 39px;
}

.signUpForm {
    width: 40%;
    padding: 42px 0px 48px 0px;
    background: #e5e5e5;
    border-radius: 30px;
    overflow: scroll;
	margin-top: 10px;
	border-top-left-radius: 80px;
	border-top-right-radius: 80px;
	border-bottom-right-radius: opx;
	border-bottom-left-radius: opx;
	
	
}

.signUpFormInput {
    display: flex;
    flex-direction: column;
    margin-top: 22px;
    padding: 0px 64px 0px 64px;
}

.signUpFormInput input {
    border: 1px solid #000000;
    padding: 17px 11px 16px 11px;
    width: 100%;
    margin-bottom: 15px;
    outline: none;
    font-family: "Fredoka", sans-serif;
    background: #f0f0f0;
    color: #000;
    font-size: 15px;
}

.signUpPrivacyPolicy {
    display: flex;
    justify-content: center;
    gap: 5px;
    font-family: "Mochiy Pop One";
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    padding: 0 30px;
    margin-top: 15px;
}

.signUpPrivacyPolicy span {
    font-size: 14px;
}

.signUpForm button {
    text-align: center;
    background: #ffc600;
    padding: 20px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 30px;
    margin: 0 auto;
    border: none;
    margin-top: 20px;
}

.signUpFormBottom {
    display: flex;
    text-align: center;
    justify-content: center;
    margin-top: 26px;
    font-size: 15px;
    align-items: center;
    gap: 5px;
    font-family: "Fredoka", sans-serif;

    span {
        font-size: 20px;
        font-weight: 800;
    }
}

.copyRightContent {
    position: absolute;
    bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: "Poppins", serif;
    font-size: 14px;
}

.logoSectionImage {
    margin-top: 150px;
    text-align: center;
}

.logoSectionImage p {
    font-family: "Dosis", sans-serif;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 52px */
}

.logoSectionImage span {
    font-family: "Mochiy Pop One", sans-serif;
}

.mobileSectionImage {
    display: none;
}

@media screen and (min-width: 350px) and (max-width: 768px) {
    .signUpContainer {
        display: flex;
        flex-direction: column;
        margin: unset;
        height: 100vh;
    }
    .backArrow2 {
        order: -1;
        display: flex;
        padding-left: 20px;
        
    }

    .logoSection {
        display: none;
    }
    .signUpFormInput {
        padding: 0px 20px;
    }
	.signUpForm {
    width: 100%;
	border-top-left-radius: 0px;
	border-top-right-radius: 0px;
	border-bottom-right-radius: opx;
	border-bottom-left-radius: opx;
	margin-top: 0px;
	}
    .mobileSectionImage {
        display: block;
    }

    .mobileSectionImage img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .signUpContainer {
        display: flex;
        flex-direction: column;
        margin: unset;
        height: 100vh;
    }

    .logoSection {
        display: none;
    }

    .signUpForm {
        width: 100%;
        height: 100vh;
    }

    .signUpFormInput {
        padding: 0px 20px;
        width: 70%;
        margin: 0 auto;
    }

    .mobileSectionImage {
        display: block;
    }

    .mobileSectionImage img {
        width: 100px;
        height: 100px;
        margin-bottom: 10px;
    }
}
