@import url('https://fonts.googleapis.com/css?family=Poppins&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

body{
    font-family: 'Poppins', sans-serif;
    width: 100%;
}

/* TYPOGRAPHY */ 

html {
  font-size: 100%;
}

h1 {
  font-size: 3.6rem;
}

#heros{
  display: flex;
  justify-content: center;
  padding: 7.5rem 0 4rem 0;
}

.container-general {
  display: flex;
  flex-direction: row;
  width: 80%;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);

}

.container-right {    
  width: 590px;
  height: 690px;
  background-color: #E0DCFE;
  padding: 20px;
  margin: auto;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}

.container-left {    
  width: 590px;
  height: 690px;
  background-color: #F0CD78;
  padding: 20px;
  margin: auto;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;

  display: flex;
  justify-content: center;
  align-items: center;
}
  
.containerLG {
    width: 590px;
    margin-top: 10px;
    margin-bottom: 10px;
    margin-left: 40px;
    margin-right: 40px;
  }
  

  .header h2 {
    font-size: 16px;
    color: #112211;
    
  }
  
  .content {
    margin-top: 30px;
    display: flex;
    flex-direction: row;
  }
  
.email-log {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  padding: 10px;
  margin-block: 20px;
  border-radius: 4px ;
}
  
.password {
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px ;
  margin-block: 12px;
}
  
  .remember-me {
    margin-top: 25px;
    margin-bottom: 40px;
  }

  .submit {
    width: 100%;
    height: 40px;
    background-color: #E8821A;
    color: #000;
    border-radius: 4px;
    border: none;
    cursor: pointer;
  }
  
  .no-account {
    text-align: center;
    margin-top: 20px;
  }
  
  .social-login {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}

h3 {
    text-align: center;
    font-size: 14px;
    color: #ccc;
    margin-top: 30px;
    margin-bottom: 25px;
}

.social-links-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.social-link {
  border: 1px solid #E8821A;
  height: 50px;
  width: 150px;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 4px;
}

.social-linkc a img {
    text-align: center;
}

.social-link a {
  width: 150px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  object-fit: fill;
}

/*Register*/

form .form_row{
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

form .form_row input{
  width: 100%;
  height: 40px;
  border: 1px solid #ccc;
  padding: 10px;
  border-radius: 4px ;
  margin-block: 12px;
}

a {
  text-align: right;
  color: #FF8682;
}


@media screen and (max-width: 767px) {
  .container-right,
  .container-left {
    display: none;
  }

  .container-general {
    width: 95%;
    flex-direction: column;
    box-shadow: none;
  }

  .containerLG {
    width: 100%;
    margin: 0;
    padding: 1rem;
  }

  .containerLG h1 {
    font-size: 2.2rem;
    text-align: center;
  }

  .social-links-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .social-link {
    width: 100%;
  }

  form .form_row {
    flex-direction: column;
    column-gap: 0;
  }
}
