@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');
body{
    margin: 0px;
    padding: 0px;
    background-color: #674baf;
    background-image: url(/images/bg-desktop.svg);
    background-size: 100%;
    background-repeat: no-repeat;
}
@media (max-width: 600px) {
    body{
        background-image: url(/images/bg-mobile.svg);
        background-size: cover; 
        background-repeat: no-repeat;
    }
    .pages{
        width: 350px;
    }
    .contentMiddle{
        width: 350px;
        margin-left: auto;
        margin-right: auto;
        flex-direction: column;
        text-align: center;
    }
    .textContainer{
        max-width: 350px;
        flex-direction: column;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    .contentBottom{
        margin-top: 50px;
        width: 200px;
        margin-left: auto;
        margin-right: auto;
    }
    .contentTop{
        width: 350px;
        margin-left: auto;
        margin-right: auto;
    }
    .logo{
        width: 160px;
        margin-bottom: 60px;
    }
}

.content{
    height: 100vh;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.contentTop{
    margin-top: 70px;
}
.contentMiddle{
    display: flex;
    gap: 50px;
    font-family: 'Poppins', sans-serif;
    color: white;
}
.textContainer{
    
}
.title{
    font-size: 40px;
}
.register{
    margin-top: 15px;
    width: 220px;
    background-color: white;
    color: #674baf;
    border: none;
    height: 60px;
    border-radius: 60px;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    font-size: large;
    box-shadow: 1px 2px 10px rgb(0, 0, 0, 0.6);
    transition: .3s;
}
.register:hover{
    cursor: pointer;
    transform: translateY(-5px);
    transition: .3s;
    box-shadow: 1px 2px 10px rgb(0, 0, 0, 0.3);
}
.contentBottom{
    margin-bottom: 40px;
}
.socialsContainer{
    display: flex;
    float: right;
    gap: 25px;
    margin-right: 20px;
}
.social{
    filter: invert(100%);
    width: 50px;
    transition: .2s;
}
.social:hover{
    cursor: pointer;
    transform: scale(1.1);
    transition: .2s;
}