.sitebuilder{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: unset;
    position: relative;
    padding: 3vw 5vw;
    min-height: 10rem;
    .container{
        
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 100%;
        max-width: 100rem;
        margin: 0 !important;
        padding: 0;
        .signup-wrapper{
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            width: 40%;
            
            .info *{
                font-family: var(--title-font);
                color: var(--title-font-color);
                font-size: 3vw;
                user-select: none;
                pointer-events: none;
            }
            .sign-up-box{
                width: 100%;
                display: flex;
                justify-content: center;
                align-items: center;
                position: relative;
                margin-top: 1vw;
                max-width: 30rem;
                .sign-up-input{
                    width: 100%;
                    height: 100% !important;
                    margin: 0;
                    
                    input{
                        background-color: transparent;
                        border: 2px solid var(--input-color);
                        color: var(--input-color);
                        border-radius: 10px;
                        height: 100% !important;
                        opacity: 100%;
                    }
                    input::placeholder{
                        color: var(--input-color);
                        opacity: 50%;
                    }
                }
                .sign-up-btn{
                    border-radius: 10px;
                    position: absolute;
                    right: 0;
                    height: 100%;
                    width: 3rem;
                    border: 2px solid var(--input-color);
                    background-color: white;
                    overflow: hidden;
                    .btn{
                        position: relative;
                        border-radius: unset;
                        background-color: unset;
                        width: 100%;
                        padding: 0;
                        overflow: hidden;
                        
                        img{
                            height: 100%;
                            user-select: none;
                            cursor: pointer;
                            pointer-events: none;
                        }
                    }
                }
            }
        }
        .social-wrapper{
            display: flex;
            flex-grow: 0;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            height: fit-content;
            gap: 1rem;
            .icon{
                display: flex;
                justify-content: center;
                align-items: center;
                height: fit-content;
                width: 5vw;
                height: 5vw;
                
                
                img{
                    width: 100%;   
                }
            }
        }
    }
}
@media screen and (min-width: 1500px ){
    .sitebuilder{
        padding: 3rem 5rem;
        .container{
            .signup-wrapper{
                max-width: 40rem;
                .info *{
                    font-size: 2.7rem;
                    text-align: center;
                }
                .sign-up-box{
                    margin-top: 1rem;
                    
                    .sign-up-input{

                        input{

                        }
                        input::placeholder{
                        }
                    }
                    .sign-up-btn{

                        button{

                        }
                    }
                }
            }
            .social-wrapper{


                .icon{
                    width: 4.5rem;
                    height: 4.5rem;                    
                }
            }
        }
    }
}
@media screen and (max-width: 770px ){

    .sitebuilder{
        
        .container{
            flex-direction: column;
            .signup-wrapper{
                width: 100%;
                max-width: 30rem;
                .info *{
                    font-size: 8vw;
                    text-align: center;
                }
                .sign-up-box{
                    height: 3rem;
                    margin-top: 2vw;
                    .sign-up-input{

                        input{

                        }
                        input::placeholder{
                        }
                    }
                    .sign-up-btn{

                        button{

                        }
                    }
                }
            }
            .social-wrapper{
                width: 100%;
                max-width: 30rem;
                margin-top: 10vw;
                margin-bottom: 8vw;
                .icon{
                    width: 8vw;
                    height: 8vw;
                }
            }
        }
    }
}