body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  height: 100vh;
  justify-content: space-between;
}

h1,
h2,
p {
  margin: 0;
  padding: 0;
}

input {
  outline: none;
  border: none;
}

.img-grande {
  margin-left: 50px;
}

.section-form {
  margin-right: 200px;
}

.img-logo {
  width: 150px;
  justify-self: center;
}

.section-logo {
  display: grid;
  justify-content: center;
}

.texto-logo {
  font-family: "Poppins", sans-serif;
  text-align: center;
  font-weight: 400;
  font-size: 24px;
  color: #252aff;
}

.form {
  display: grid;
  justify-content: center;
  padding: 10px;
  gap: 20px;
}

.input-box {
  display: flex;
  flex-direction: column;
  width: 341px;
}

.input-box label {
  text-transform: uppercase;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
  font-weight: 600;
  color: rgb(92, 92, 92);
  margin-left: 10px;
  margin-bottom: 10px;
}

.input-box input {
  height: 40px;
  font-size: 16px;
  border-radius: 5px;
  background: transparent;
  border: 2px solid #ccc;
  padding: 10px;
  font-family: "Poppins", sans-serif;
}

.btn-entrar {
  height: 40px;
  outline: none;
  border: none;
  background: #252aff;
  border-radius: 5px;
  font-weight: 600;
  font-size: 18px;
  color: #fff;
  margin-bottom: 20px;
  cursor: pointer;
}

.senha-box {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.check-box {
  display: flex;
  align-items: center;
  gap: 5px;
}

.senha-box .check-box input {
  width: 18px;
  height: 18px;
}

.senha-box .check-box label {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: rgb(167, 167, 167);
}

.senha-box a {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  align-self: center;
  color: #a2b5f3;
  transition: 0.3s;
}

.senha-box a:hover {
  color: #252aff;
  text-decoration: none;
}

.footer-form p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #9e9e9e;
  text-align: center;
  margin-bottom: 10px;
}

.footer-form a {
  border: 2px solid #252aff;
  width: 100%;
  display: grid;
  height: 40px;
  text-align: center;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-family: "Roboto", sans-serif;
  border-radius: 5px;
  color: #252aff;
}

.footer-form a:hover {
  border: 1px solid #252aff;
}

@media (max-width: 650px) {
  body {
    justify-content: center;
  }

  .section-form {
    margin: 0;
  }

  .img-grande {
    display: none;
  }
}
