* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: #ffffff;
}

.main-container {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: white;
}

.principal {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
}

.p1 {
    width: 100%;
    height: 100vh;
    position: relative;
    display: grid;
    grid-template-columns: 30% 70%;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.desc {
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: flex-start;
    background-color: #e41285f0;
    color: white;
}

.desc div {
    margin: 4rem;
    width: 60%;
}

.desc img {
    margin-bottom: 10rem;
}

.desc {
    font-size: 1.5rem;
    line-height: 1;
    font-family: "Inter", sans-serif;
}

.desc .man {
    position: absolute;
    bottom: -20%;
    left: 60%;
    width: auto; 
    max-width: 100%;
    z-index: 1;
}

.log{
    width: 100%;
    height: 100vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: rgb(244, 244, 244);
}

.log p a {
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 600;
    color: black;
}

.log p a:hover {
    color: #e70a84d6;
}

.log .formulario {
    width: 28%;
    height: 50vh;
    padding: 1rem;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-radius: 35px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    background-color: white;
}

.log .formulario input {
    width: 100%;
    height: 10%;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid silver;
    font-size: 1.1rem;
    margin-bottom: 9rem;
}

.log .formulario div {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}


.log .formulario button {
    width: 100%;
    height: 5vh;
    border-radius: 8px;
    border: 1px solid silver;
    align-items: center;
    background-color: #e70a84d6;
    font-size: 1.1rem;
    color: white;
    cursor: pointer;
    font-weight: 600;
}

.log .formulario button:hover {
    background-color: #ef2594cc;
    transform: translateY(1px) scale(.90);
    transform: translateY(-2px);
}

.log .text   {
    font-size: 1.4rem;
    font-family: "Inter", sans-serif;
    color: rgb(44, 44, 44);
    align-items: flex-start;
    margin-bottom: 1rem;
}

/* ========================================
   RESPONSIVIDADE
   ======================================== */

/* TABLETS */
@media (max-width: 1024px) {

    main {
        top: 0;
    }

    .p1 {
        grid-template-columns: 1fr;
        height: auto;
    }

    .desc {
        height: auto;
        padding-bottom: 4rem;
        align-items: center;
        text-align: center;
    }

    .desc div {
        width: 90%;
        margin: 2rem auto;
    }

    .desc .man {
        position: relative;
        bottom: 0;
        left: 0;
        margin-top: 2rem;
        max-width: 300px;
    }

    .log {
        height: auto;
        padding: 3rem 0;
    }

    .log .formulario {
        width: 60%;
        height: auto;
    }

     .man {
        display: none;
    }
}

/* CELULAR GRANDE */
@media (max-width: 768px) {

    main {
        top: 0;
    }

    .desc {
        font-size: 1.2rem;
    }

    .log .formulario {
        width: 80%;
        padding: 2rem;
    }

    .log .formulario input {
        margin-bottom: 3rem;
        height: auto;
    }

    .principal {
        height: auto;
    }

    main {
        margin-top: 6rem;
    }

    .man {
        display: none;
    }
}

/* CELULAR PEQUENO */
@media (max-width: 480px) {

    main {
        top: 0;
    }

    .desc div {
        width: 95%;
    }

    .desc h1 {
        font-size: 1.4rem;
    }

    .desc h3 {
        font-size: 1rem;
    }

    .desc .man {
        display: none;
    }

    .log .formulario {
        width: 90%;
        border-radius: 20px;
    }

    .log .formulario input {
        font-size: 1rem;
        padding: 0.8rem;
    }

    .log .formulario button {
        height: 45px;
        font-size: 1rem;
    }

    .log .text {
        font-size: 1.2rem;
    }
}