* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    font-size: 0.95rem;
  }

body{
    font-family: "Trebuchet MS", "Helvetica", sans-serif;
    background: rgb(80,45,120);
    background: linear-gradient(90deg, rgba(80,45,120,1) 0%, rgba(97,169,189,1) 100%);
    overflow-x: hidden;
}

.navbar-menu {
  display: flex;
  list-style: none;
  background-color: #ffffff;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
}

.navbar-menu a {
  text-decoration: none;
  color: #353535;
  font-weight: bolder;
}

.navbar-menu ul {
  list-style: none;
  display: flex;
  gap: 5vw;
  width: fit-content;
  color: var(--primary-color);
  flex-wrap: wrap;
}

.navbar-menu ul li a {
  color: rgb(49, 49, 49);
}

.container {
    width: 400px;
    height: 395px;
    background-color: rgba(255, 255, 255, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
    margin: 0 auto;
    margin-top: 100px;
    text-align: center;
    padding-bottom: 20px;
}

.container img {
    height: 70%;
    margin-top: -99px;
    margin-bottom: auto;
}

input{
    border-radius: 50px;
    height: 40px;
    width: 80%;
    font-size: 19px;
    margin-bottom: 10px;
    background-color: #fff;
    padding-left: 40px;
    border: none;
    background-repeat: no-repeat;
    background-position: 10px;
}

input.name {
    background-image: url(../img/icone-usuario.png);
}

input.senha {
    background-image: url(../img/icone-cadeado.png);
}

input.email{
    background-image: url(../img/email_20px\(3\).png);
}

input.submit{
    border-radius: 50px;
    color: #fff;
    background-color: #3941a0;
    border: 2px solid #1c2477;
    padding: 5px 20px;
    height: 45px;
    width: 80%;
}
.dont-have-account p
{
  color: #ffffff;
  font-size: 19px;
}

.dont-have-account a
{
  font-size: 19px;
  color: #1c2477;
  text-decoration: none;
  font-weight: bold;
}

.dont-have-account a:hover{
  color: #3941a0;
}


@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css");

  footer {
    /* background-color: #353535; */
    padding-top: 20px;
    background-color: #000;
    /* justify-content: center;
    display: flex;
    align-items: center;
    position: absolute; */
    width: 100%;
    bottom: 0px;
    color: #fff;
    font-size: 14px;
    height: 100%;
    margin-top: 150px;
  }


/* .footer{
     display: flex;
    align-items: center;
    justify-content: space-around; 
 } */

  /* footer .copy {
    color: #d9d9d9;
    text-align: center;
    padding: 10px;
  }
  
  footer .pesquisas {
    color: violet;
    padding: 10px;
  } */
  
  footer a {
    color: #d9d9d9;
    text-decoration: none;
  }
  
  footer a:hover {
    color: var(--secondary-color);
  }
  
  /* footer ul{
    display: flex;
    justify-content: center;
  } */
  
  footer ul{
    display: block;
}
  

  footer li {
    display: flex;
    list-style: none;
  }

  .column{
      height: 100%;
      float: inline-start;
      width: 20%;
      display: flex;
      justify-content: center;
  }

  .column.unique{
    border-top: 1px solid #6e49c4;
    padding: 20px 0;
    width: 100%;
  }

  .row{
        width: 100%;
        display: flex;
        align-items: baseline;
        justify-content: space-around;
  }

  .row:after {
    content: "";
    display: table;
    clear: both;
  }


  footer i{
    padding-right: 5px;
  }
  
.social-media i{
  padding-right: 30px;
}

  .social-media{
      padding: 20px 0;
  }

  .social-media i{
      font-size: 25px;
  }

  .btn-app{
    padding-top: 10px;
    width: 120px;
  }

  /* Ajustes para Responsividade */
  @media only screen and (max-width: 771px) {

    .row{
      display: inline-block;
      justify-content: space-around;
    }
    .column{
      display: block;
      /* display: flex; */
      padding-left: 30px;
      /* justify-content: center; */
      margin-bottom: 30px;
      width: 100%;
    }

    .social-media{
      justify-content: center;
      padding-bottom: 0;
    }


    /* Não sei se deixo isso aqui... */
     /* li{ 
       justify-content: center;
    }  */
    .column.app{
        display: flex;
        align-items: center;
        justify-content: center;
      }
    }


    .column.unique p{
      text-align: center;
    }

  @media only screen and (max-width: 1090px) and (min-width: 771px) {
    /* footer{
      background-color: #6e49c4;
    } */


    .column{
      width: 100%;
    }

    .column > *{
      flex: 1 1 100%;
    }  
  
    

  }

