.position-signin {
  display: grid;
  justify-items: center;
  align-items: center;
  align-content: space-between; 
  max-height: 100vh;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.img-home {
  width: 100%;
}

.logo-signin {
  width: 60%;
  max-width: 200px;
}

#form {
  display: grid;
  width: 100%;
  max-width: 400px;
  min-width: 250px ;
  height: 60vh;
  justify-items: center;
  align-items: center;
  align-content: space-evenly;
  border: 1px solid #DDDDDD;
  
}

.email-signin, .password-signin, .submit-signin {
  width: 75%;
  height: 38px;
  border: none;
  border-radius: 20px;
  padding: 5px 15px;
  margin: 10px;
  box-sizing: border-box;
  box-shadow: 0px 4px 40px rgba(147, 147, 147, 0.4);
  background-color: #ffffff;
}

#signin {
  background-color: #FF009E;
  color: #fff;
}

.text-signin {
  font-size: 0.8em;
  width: 85%;
  color: rgba(56, 56, 56, 0.8);
  background-color: #ffffff; 
  padding: 0 10px;
}

.change-form {
  color: #FF009E;
  font-weight: bold;
}

.text-signin a {
  text-decoration: none;
}

.line {
  width: 70%; 
  height: 10px; 
  border-bottom: 1px solid rgb(189, 189, 189); 
  text-align: center;
}

.button-google-signin {
  width: 75%;
  height: 38px;
  border: none;
  border-radius: 20px;
  font-weight: bolder;
  line-height: 25px;
  color: #383838;
  background-color: #fff;
  box-shadow: 0px 4px 40px rgba(147, 147, 147, 0.2);
}

.google-icon {
  width: 22px;
  margin-right: 15px;
}

input:focus {
  outline: none;
}

button:focus {
  outline: none;
}
input:hover{
  cursor: pointer;
}

button:hover{
  cursor: pointer;
}

.red {
  color: rgb(255, 0, 0);
}

@media (min-width:768px) {
  .main {
      grid-template-columns: 100%;
  }

  .position-signin {
    margin-top: 10vh;
    grid-template-columns: 65% 35%;
  }

  .img-home {
    width: 60vw;
    height: auto;
    align-self: end;
  }

  #form {
    width: 100%;
    height: 80vh;
  }
}

