#signin-and-login {
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: 0.5s;
}

#signin-and-login .logo {
    width: 160px;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px 0px 0px 20px;
    cursor: pointer;
}

#login_section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    background-color: var(--white);
    padding: 40px;
    transition: 0.5s;
}

#signin_section {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 65vw;
    height: 100vh;
    background-color: var(--white);
    transition: 0.5s;
}

.section__title {
    color: var(--green);
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin: 0px;
}

.section__p {
    color: var(--dark-gray);
    margin: 20px 0px;
    text-align: center;
    font-size: 16px;
}

.section__p span {
    color: var(--orange);
    text-decoration: underline;
    cursor: pointer;
}

.section__form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}



.section__div {
    background: #e7e7e799;
    padding: 10px 0px;
    border-radius: 10px;
    width: 60%;
    max-width: 500px;
    display: flex;
    align-items: center;
    margin: 5px 0px;
    transition: 0.2s;
}

.section__div:has(> input:focus) {
    background-color: var(--white);
    color: var(--green);
    border-bottom: solid 2px var(--green);
    box-shadow: none;
    border-radius: 0px;
}

.section__div .section__input:focus::placeholder {
    color: var(--green);
}

.section__div .section__input:focus {
    color: var(--green);
}

.section__icon {
    font-size: 23px;
    margin: 0px 10px;
}

.section__input {
    background: transparent;
    border: 0px;
    outline-width: 0px;
    width: 100%;
    height: 100%;
    font-size: 18px;
}

.section__input::placeholder {
    color: var(--black);
    opacity: 0.9;
}

.section__button {
    background-color: var(--green);
    border-radius: 100px;
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    color: var(--white);
    padding: 15px 60px;
    border: 0px;
    outline-width: 0px;
    letter-spacing: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section__button.loading {
    background: transparent;
    padding: 5px 0px 0px 0px;
    cursor: wait;
}

.section__select {
    background: transparent;
    color: var(--black);
    border: 0px;
    width: 100%;
    height: 100%;
    margin-right: 10px;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
}

.section__select:focus {
    color: var(--green);
    border: 0px;
    outline-width: 0px;
}

.section__div:has(> select:focus) {
    background-color: var(--white);
    color: var(--green);
    border-bottom: solid 2px var(--green);
    box-shadow: none;
    border-radius: 0px;
}

.section__div .section__select:focus {
    color: var(--green);
}

#swich-section {
    background: linear-gradient(219deg, #4a8ea3, #08e3c1);
    width: 35vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    overflow: hidden;
    position: relative;
    transition: 0.5s;
}

.swich__h2 {
    color: var(--white);
    font-size: 30px;
    margin: 0px;
    text-align: center;
    z-index: 2;
}

.swich__p {
    text-align: center;
    color: var(--white);
    font-size: 16px;
    margin: 40px 0px;
    z-index: 2;
}

.swich__button {
    border: solid 2px var(--white);
    color: var(--white);
    background: transparent;
    outline-width: 0px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 400;
    padding: 15px 40px;
    border-radius: 40px;
    letter-spacing: 2px;
    margin: 0px;
    z-index: 2;
}

.swich__button:hover {
    background: var(--white);
    color: var(--green);
    border: solid 2px transparent;
}

.box {
    position: absolute;
    background-color: var(--gray);
    opacity: 0.5;
}

.box.box1 {
    width: 130px;
    height: 130px;
    right: 0;
    bottom: 0;
    border-radius: 100% 0% 0%;
}

.box.box2 {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    margin: 40px;
    rotate: 35deg;
    box-shadow: -180px 154px 0px var(--gray);
}

.box.box3 {
    background: none;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid var(--gray);
    top: 0;
    right: 0;
    margin: 153px 179px 0px 0px;
    rotate: 15deg;
    box-shadow: 110px 0px 0px var(--gray);
}

.box.box4 {
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    transform: translate(-3px, 407px);
    rotate: 3deg;
    border-radius: 100%;
    box-shadow: -180px 154px 0px var(--gray);
}

#signInSpan {
    display: none;
    color: var(--orange);
    text-decoration: underline;
}

#loginSpan {
    display: none;
    color: var(--orange);
    text-decoration: underline;
}

@media only screen and (max-width: 500px) {
    #swich-section {
        display: none;
    }

    #login_section {
        width: 100vw;
        padding: 0px;
    }

    .section__title {
        font-size: 35px;
        letter-spacing: normal;
    }

    .section__p {
        margin: 5px 0px 10px 0px;
    }

    .section__form {
        padding: 0px 20px;
    }

    .section__div {
        width: 90%;
        margin: 10px 0px;
    }

    .section__help {
        text-align: center;
        margin: 0px 0px 10px 0px;
    }

    .logo {
        display: none;
    }

    #signInSpan {
        display: flex;
        position: absolute;
        bottom: 0;
        margin: 0px 0px 40px 0px;
    }

    #loginSpan {
        display: flex;
        position: absolute;
        bottom: 0;
        margin: 0px 0px 40px 0px;
    }

    #signin_section {
        width: 100vw;
    }

    .section__icon {
        font-size: 30px;
    }

    .section__button {
        margin-bottom: 40px;
    }
}