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

:root{
    --cor1: #0068E1;
    --cor2: #1B78F2;
    --cor3: #1D8FF2;
    --cor4: #1DA1F2;
    --cor5: #1BB5F2;
    --fonte-hg: "Funnel Sans", sans-serif;
    --fonte-hl: "Lexend", sans-serif;
    --fonte-pd: Arial, Helvetica, sans-serif
}

* {
    box-sizing: border-box;
    padding: 0px;
    margin: 0px;
}

body{
    background-color:  #3688ba;
    height: 100dvh; 
    width: 100vw;
    overflow-x: hidden; 
}

main{
    position: relative;
    height: 100dvh;
    width: 100vw;
}

.container{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 1200px;
    height: 800px;

    display: flex;
    background-color: white;
    border-radius: 6px;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.440);

    transition: width 0.3s, height 0.3s;
    transition-timing-function: ease;
}

.container h1{
    font-size: 60px;
    margin: 2px;
    font-family: var(--fonte-hl);
}

.container p{
    font-family: var(--fonte-hg);
    font-size: 18px;
}

.container-sgp{
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 50%;
    gap: 20px;
    border-radius: 6px 0px 0px 6px;
}

.container-sgp p, 
.container-sgp a{ 
    font-family: var(--fonte-hg);
    font-size: 18px;
    text-decoration: none;
    color: black;
}

.container-sgp a:hover{
    text-decoration: underline;
}

.container-sgp input{
    width: 75%;
    height: 40px;
    border-radius: 8px;
    background-color: rgba(220, 220, 220, 0.573);
    font-size: 18px;
    padding: 6px;
    border-style: double;
}

.container-sgp button{
    height: 40px;
    width: 200px;
    border-radius: 8px;
    border-style: hidden;
    background-color: var(--cor1);
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.container-sgp button:hover{
    background-color: var(--cor2);
    cursor: pointer;
}

.container-bgd{
    background-color: var(--cor1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 50%;
    border-radius: 0px 6px 6px 0px;
}

.container-bgd h1,
.container-bgd p{ 
    color: white;
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.28);
}

.social-icons{
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon img {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.691);
  padding: 4px;
  border-radius: 20%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0px 3px 0px;
}

@media (max-width: 1200px){
    .container{
        min-width: 800px;
        height: 600px;
    }

    .container h1{
        font-size: 40px;
    }

    .container p{
        font-size: 16px;
    }
}

@media (max-width: 768px){
    .container{
        min-width: 600px;
        height: 500px;
    }

    .container h1{
        font-size: 30px;
    }

    .container p{
        font-size: 14px;
    }
}

@media (max-width: 425px){
    .container{
        min-width: auto;
        width: 90%;
        height: 90%; 
        flex-direction: column-reverse;
        box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.440);
    }

    .container h1{
        font-size: 30px;
    }

    .container p{
        font-size: 14px;
    }

   .container-sgp{
        height: 55%;
        width: 100%;
        border-radius: 0px 0px 6px 6px;
    }

    .container-bgd{
        height: 45%;
        width: 100%;
        border-radius: 6px 6px 0px 0px;
    }
}