body {
  margin: 0;
  padding: 0;
  background-color: rgb(245, 249, 252);
}

.top-bar {
  align-items: center;
  background-color: rgb(66, 103, 178);
  display: flex;
  justify-content: space-around;
 }

 .facebook-login {
   display: none;
 }

 .facebook-logo {
  width: 100px;
}

.main-content {
  display: none;
}

.mobile-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 45px;
}

.mobile-input {
  background-color: rgb(234, 242, 250);
  border: 1px solid rgb(226, 226, 226);
  border-radius: 3px;
  padding: 6px;
  width: 80%;
}

.submit-account {
  background-color: blue;
  border: none;
  border-radius: 3px;
  color: white;
  font-weight: 700;
  margin-top: 8px;
  padding: 6px;
  width: 82%;
}

.create-account {
  background-color: rgb(6, 143, 6);
  color: white;
  border: none;
  border-radius: 3px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.password-forgot {
  color: rgb(108, 146, 250);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}

.text-container {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 82%;
}
.text-container hr {
  width: 80%;
  border-color: rgb(233, 222, 222);
  margin: 5px;
}

@media only screen and (min-width: 1000px) {

  body {
    background-color: rgba(218,237,255,1);
  }

  .facebook-login {
    display: flex;
    align-items: baseline;
    width: 320px;
  }
  
  .logo-facebook {
    width: 230px;
  }
    
  .form-group {
    color: white;
    display: flex;
    flex-direction: column;
  }
  
  .bar-info {
    font-size: 14px;
    font-weight: 700;
    width: 120px;
  }
  
  .user-email-phone, .user-password {
    border: 1px solid rgb(51, 51, 139);
    border-radius: 3px;
    padding: 2px;
  }
  
  .form-control {
    align-self: flex-end;
  }
    
  .main-content {
    display: flex;
    justify-content: space-evenly;
    background: linear-gradient(180deg, rgba(250,253,255,1) 0%, rgba(243,249,255,1) 18%, rgba(234,246,255,1) 39%, rgba(228,243,255,1) 61%, rgba(222,239,255,1) 81%, rgba(218,237,255,1) 100%);
  }
    
  .left-content {
    width: 400px;
  }
  
  .left-content p {
    color: rgb(8, 8, 87);
    font-weight: 900;
    font-size: 20px;
    background-color: ;
  }
  
  .facebook-fullname {
    display: flex;
    justify-content: space-between;
    width: 300px;
  }
  
  .right-content {
    width: 300px;
  }
    
  .facebook-datas {
    display: flex;
    flex-direction: column;
  }
    
  .gender-options {
    display: flex;
  }
  
  .form-group {
    width: 150px;
    align-self: center;
  }
  
  .button-login {
    background-color:  rgb(84, 124, 204);
    border: 1px solid rgb(51, 51, 139);
    border-radius: 3px;
    color: white;
    padding: 2px;
  }
  
  .facebook-fullname .info{
   width: 135px;
  }
  
  .info {
    margin-bottom: 8px;
    border-radius: 3px;
    border: 1px solid rgb(207, 206, 206);
    padding: 5px;
  }
  
  .facebook-register {
    background-color: green;
    color: white;
    font-weight: 700;
    padding: 5px 25px;
    margin-top: 5px;
  }
  
  .label-gender, .gender-options {
    margin-bottom: 8px;
  }

  .facebook-logo {
    width: 150px;
  }

  .mobile-content {
    display: none;
  }
}


