.signin__wrapper {
    background-color: $primary;

}

.select-state{
    position: relative;
}

.form__group{
    select,
    input {
        width: 100%;
        height: 7rem;
        font-family: Poppins;
        font-weight: 400;
        font-size: 1.8rem;
        text-align: left;
        border-radius: 13px;
        background: #fff;
        border: 1px solid #cbcbcb;
        padding: .5rem 2rem;
        appearance: none;
        &::-webkit-outer-spin-button,
        &::-webkit-inner-spin-button{display: none; opacity: 0;}
        &::placeholder {
            font-weight: 400;
            font-size: 1.8rem;
        }


    }
}

.login {
    max-width: 1440px;
    width: 100%;
    padding: 10rem 2rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 800px) minmax(400px, 1fr);
    gap: 3rem;

    &__left {
        max-width: 80rem;
        width: 100%;

        img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }
    }

    &__right {
        max-width: 35rem;
        width: 100%;
        margin: 0 auto;
        
        
        .sign_logo {
            width: 26rem;
            height: auto;
            object-fit: contain;
            display: flex;
            margin: 0 auto;
            margin-bottom: 3rem;
        }

        &--card {
            width: 100%;
            background-color: $white;
            border-radius: 36px;
            box-shadow: 30px 30px 40px rgba(0, 0, 0, 0.45);
            padding: 2rem 2.7rem;
            margin: 0 auto;
          

            .mooch {
                width: 14rem;
                height: 100%;
                object-fit: contain;
                display: flex;
                margin: 0 auto;
            }

            .register {
                font-weight: 600;
                font-size: 3.2rem;
                text-align: center;
                margin-top: 1rem;

            }

            .social {
                display: flex;
                gap: 2.5rem;
                justify-content: center;
                margin: 2rem auto;

                &__icon {
                    width: 10rem;
                    height: 10rem;
                    border: 1px solid #707070;
                    border-radius: 18px;
                    display: flex;
                    justify-content: center;
                    align-items: center;

                    a {
                        i {
                            font-size: 3rem;
                            color: $black;
                        }
                    }
                }
            }

            span {
                font-weight: 400;
                font-size: 1.8rem;
                text-align: center;
                width: 100%;
                display: block;

            }

            .login_form {
                
                max-width: 48rem;
                width: 100%;
                margin: 2rem auto;

                &__group {
                    width: 100%;
                    margin: 2rem auto;


                    input[type='checkbox']:checked+label span {
                        background-color: $primary;
                    }

                    input[type='checkbox']:checked+label span i {
                        color: $white;
                        visibility: visible;
                        opacity: 1;
                    }

                    .hidden {
                        display: none;
                    }

                    label {
                        display: flex;
                        align-items: center;
                        gap: 1.5rem;
                        font-family: Poppins;
                        font-weight: 400;
                        font-size: 1.7rem;

                        span {
                            width: 3rem;
                            height: 3rem;
                            font-size: 3rem;
                            border: 1px solid $primary;
                            border-radius: 3px;
                            display: flex;
                            justify-content: center;
                            align-items: center;

                            i {
                                visibility: hidden;
                                opacity: 0;
                            }



                        }

                        a {
                            color: $primary;
                            font-weight: 700;
                        }
                    }
                }
            }

            .btn {
                width: 27rem;
                height: 8rem;
                margin: 0 auto;
                margin-bottom: 2rem;


                button {
                    background-color: $primary;
                    border-radius: 15px;
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 100%;
                    font-family: Poppins;
                    font-weight: 700;
                    font-size: 1.9rem;
                    text-align: left;
                    color: $white;
                    ;
                }
            }

            .already {
                font-weight: 400;
                font-size: 1.7rem;
                text-align: center;
                padding-bottom: 2rem;
                .signup {
                    color: $primary;
                    font-weight: 700;
                }
            }
        }
    }
}