* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.title-login {
  text-transform: uppercase;
  font-weight: 700;
}

html {
  height: 100vh;
}

body {
  background: #115810;
  font-family: "Inter", sans-serif;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 70%;
  background: #ffffff;
  padding: 3rem;
  border-radius: 20px;
}

div > .btn-success {
  background: #34b632;
  border-color: #34b632;
  letter-spacing: 1px;
  transition: 0.3s ease-out;
}

div > .btn-success:hover {
  background: #115810;
  border-color: #115810;
  font-weight: 700;
}

.text-register,
.text-forgot {
  color: #0093ed !important;
}

@media screen and (max-width: 1024px) {
  .container {
    max-width: 90%;
  }
  .container img {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 820px) {
  .container {
    max-width: 90%;
  }
  .container img {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .container {
    max-width: 90%;
  }
  .container img {
    margin-top: 5rem;
  }
}

@media screen and (max-width: 576px) {
  .container {
    max-width: 90%;
  }

  input {
    font-size: 1rem !important;
    max-width: 100% !important;
  }

  .text-register {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
