body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: #f0f2f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}
.content{
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 70vw;
}
.content-info{
  width: 600px;
}
.content-login{
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.content-login-box{
  background-color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 8px;
  width: 100%;
  box-shadow: 0 2px 4px rgb(0 0 0 / 10%), 0 8px 16px rgb(0 0 0 / 10%);
}
h1{
  color: #1877f2;
  font-size: 4rem;
}
h3{
  font-weight: 500;
  font-size: 2rem;
}
.inputs{
  padding: 15px;
  height: 22px;
  border-radius: 6px;
  border: 1px solid #dddfe2;
  outline: none;
  width: 90%;
  font-size: 17px;
  color: #1d2129;
}
.inputs:focus{
  border-color: #1b74e4;
  box-shadow: 0 0 0 2px #e7f3ff;
  caret-color: #1b74e4;
}
.btn{
  padding: 15px;
  border: none;
  color: white;
  border-radius: 5px;
  width: 100%;
  cursor: pointer;
  font-size: 1.1rem;
  transition: .2s;
}
a{
  color: #1877f2;
  cursor: pointer;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}
p{
  color: black;
  text-align: center;
}
hr{
  width: 100%;
  border: 1px solid #f0f0f0;
}
.btn-enter{
  background-color: #1877f2;
}
.btn-enter:hover{
  background-color: #166fe5;
}
.btn-create-account{
  background-color: #42b72a;
  width: auto;
}
.btn-create-account:hover{
  background-color: #36a420;
}
