@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');



html{
    background-color: hsl(257, 40%, 49%);    
}
body {
    font-size: 62.5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background: url('../images/bg-desktop.svg') center center no-repeat;
    background-size: cover;
    font-family: "Open Sans", sans-serif;
    color: white;
}
.imag-logo{grid-area: imag-logo;}
.conteiner-image{grid-area: conteiner-image;}
.text-content{grid-area: text-content; }
.redissocias{grid-area: redissocias;}

.conteiner-principal {
    display: grid;
    grid-template-areas: "imag-logo imag-logo"
                         "conteiner-image text-content"
                         "redissocias redissocias";
    
    grid-template-columns: repeat(2, 1fr); 
    display: flex;
    flex-direction: column;
    max-width: 1440px;                    
}

.conteiner-principal .content-wrapper {
    display: flex;
    gap: 30px;
    
}

.conteiner-principal .imag-logo {
    width: 194px;
    height: 45px;
    margin-bottom: 20px;
}

.conteiner-principal .content-wrapper .imag-ilustration{
    width: 623px;
    overflow: hidden;
}

.conteiner-principal .content-wrapper .text-content h1 {
    font-family: "Poppins", sans-serif;
    font-size: 2.2rem;
    text-wrap: balance;
    max-width: 397px;
    overflow: hidden;
}

.conteiner-principal .content-wrapper .text-content p {
    font-size: 1.1rem;
    text-wrap: pretty;
    width: 498px;
    margin-top: 6%;
    overflow: hidden;
}

.conteiner-principal .content-wrapper .text-content .register-button {
    width: 195px;
    height: 55px;
    font-size: 1.2rem;
    margin-top: 6%;
   
    border-radius: 30px;
    border: none;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;

    cursor: pointer;
    transition: 0.5s;

    overflow: hidden;

}

.conteiner-principal .content-wrapper .register-button:hover{
    color: white;
    background-color:  hsl(300, 69%, 71%);
}

.conteiner-principal .redissocias {
    display: flex;
    text-align: end;
    justify-content: end;
    gap: 3%;
    margin-bottom: 5%;
}

.conteiner-principal .redissocias i {
    font-size: 1.3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 40px;
    height: 40px;
    
    border-radius: 50%;
    border: 1px solid;
    transition: .5s;
    cursor: pointer;
}

.conteiner-principal .redissocias i:hover {
    color: hsl(300, 69%, 71%);
}







.attribution { font-size: 11px; text-align: center; display: none;}
.attribution a { color: hsl(228, 45%, 44%); }
