@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    border: 0;
}

body{
  background: #E5E5E5;
  font-family: 'Roboto', sans-serif;
  color: black;
  height: 100vh;

  display: flex;
  flex-direction: column;/* fazer o flex ficar 
  em coluna e não em linha */
}

header{
  height: 50px;
  padding: 28px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  background-color: #347EEC;
}

.links{
  height: 50px;
  justify-content: end;
  align-items: center;
  display: flex;
}


.links a{
  color: #FFFFFF;
  font-size: 20px;
  text-decoration: none;
  margin-right: 60px;  
}


/* ===== wrapper ======= */

#wrapper {  
  text-align: center;
  width: 940px;
  border-radius: 30px;
  opacity: 100%;
  margin-left: 148px;
}

#wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#wrapper .info h1 {
  width: 376px;
  height: 113px;

  color: #4E4646;
  font-size: 96px;    
  line-height: 112px;
  font-weight: 700;
  font-weight: bold;
  text-align: left;
  margin: 183px 60px 20px 0px ;
}
#wrapper .info h3{
  width: 587px;
  height: 51px;

  font-weight: 400;
  font-size: 40px;
  line-height: 47px;
  text-align: left;
  color: #4E4646;
  margin-bottom: 30px;
}

#wrapper .info p{
  width: 587px;
  height: 143px;

  font-weight: 400;
  font-size: 25px;
  line-height: 29px;
  text-align: left;
  color: #4E4646;
}

#wrapper .image_planet img{
  margin: 143px 0px 0px 500px ;
  width: 396px;
  height: 397px;
}
#wrapper .button{
  display: flex;
  justify-content: start;
}


/* ===  Mais Informações   === */
.moreInfo {
  margin-top: 50px;
  display: flex;
  flex: 1;    /* faz com que a div se expanda em todo altura restante */
  width: 100%;
  align-items: flex-end;  /* alinha o footer lá em baixo */
}

.moreInfo img {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* === Page Login ===*/

.body_login {
  background: linear-gradient(180deg, #1A1050 0%, #3C24D5 35.42%, #3C2E94 67.19%, #351C47 95.83%);
  display: flex;
  flex-direction: column;/* fazer o flex ficar 
  em coluna e não em linha */
}

.body_login .background {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

.body_login .background img{
  width: 100%;
  display: flex;
  align-items: center;
}

.body_login .cards{
  text-align: center;
  margin-left: 98px;

  position: relative;
  display: flex;
  justify-content: space-between;
}

.body_login .cards .introduction h1{
  margin-top: 289px;

  width: 661px;
  height: 178px;
  text-align: left;
  font-weight: 700;
  font-size: 50px;
  line-height: 59px;
  color: #FFFFFF; 
  text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.body_login .cards .introduction p {
  margin-top: 154px;
  width: 268px;
  height: 28px;
  font-weight: 300;
  font-size: 25px;
  line-height: 29px;
  color: #FFFFFF;

text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}

.body_login .cards .login {
  margin-top: 80px;
  margin-right: 65px;
  background: #000000;
  width: 563px;
  height: 669px;
  border-radius: 30px;
}

.body_login .cards .login .logo_login{
  margin-top: 90px;
}
.body_login .cards .user {
  height: 200px;
}
.body_login .cards .user input{
  margin-top: 43px;

  width: 363px;
  outline: none;
  color: #FFFFFF;

  background-color: #000000;
  font-weight: bold;
  font-size: 18px;
  border-bottom: 1px solid #FFFFFF;
}

.body_login .cards .conect button[type="submit"]{
  padding: 8px 32px;
  background: #3D25D4;
  border-radius: 29.5px;
  color: white;
  border-radius: 29.5px;
  margin-top: 32px;
  width: 329px;
  height: 59px;
  font-size: 16px;

  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
}

.body_login .cards .conect p{
  margin-top: 17px;
  font-weight: 700;
  font-size: 15px;
  line-height: 18px;
  color: #FFFFFF;
}