body {
    margin: 0;
    padding: 0;
    box-sizing: content-box;
}

.loginContainer {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #e5e5e5;
}

.auth-logo {
    width: 133px;
    height: 168px;
}

.background-svg {
    position: absolute;
    width: 750px;
    top: 0;
    left: 0;
    height: auto;
    z-index: 10;
}

.content {
    z-index: 100;
    position: relative;
    padding: 2rem;
    color: #333;
    width: 100%;
    top: 0px;
}

.loginHeader {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: -25px;
}

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

.loginHeader p {
    font-family: "Fredoka", sans-serif;
    font-size: 25px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 32.5px */
}

.loginFormInput {
    display: flex;
    flex-direction: column;
    margin: 22px auto;
    padding: 0px 64px 0px 64px;
    width: 600px;
}

.loginFormInput 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;
}

.loginFormInput 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;
}

.loginFormBottom {
    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: relative;
    margin: 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-family: "Poppins", serif;
    font-size: 14px;
    z-index: 1000000;
}

@media screen and (min-width: 350px) and (max-width: 768px) {
    .loginFormInput {
        width: 100%;
        padding: unset;
		padding-top: 10px;
    }

    .loginHeader p {
        font-size: 24px;
        text-align: center;
		padding-top: 30px;
    }
	
    .auth-logo {
        width: 70px;
        height: 70px;
        margin-bottom: 20px;
    }

    .content {
        padding: 20px !important;
		top: 0px;
    }
	
    .copyRightContent {
        margin: 10px 0;
		padding-top: 160px;
    }

    .loginHeader {
        gap: 5px;
		padding-top: 100px;
    }

    .loginFormInput button {
        margin-top: unset;
    }

    .loginFormBottom {
        margin-top: 10px;
    }
}

@media screen and (min-width: 769px) and (max-width: 992px) {
    .background-svg {
        width: 120vw;
    }

    .loginFormInput {
        width: 100%;
    }
}
