main {
  background: rgb(245, 245, 245);
  padding: 16px;
}

.login {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.login_title {
  display: flex;
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
  margin: 0 auto;
  justify-content: center;
}

.login_input__url,
.login_input__name {
  width: 40%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 8px 12px 13px 12px;
  border-bottom: 1px solid var(--cor-secundaria);
  border-radius: 4px;
  height: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  margin-top: 16px;
  border: solid black 1px;
}

.login_btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px;
  margin-top: 16px;
  gap: 10px;
  justify-content: center;
  margin: 0 auto;
  width: 45%;
  height: 51px;
  background: #2a7ae4;
  margin-top: 30px;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff; 
}

@media (max-width: 885px) {
  
.login_input__url,
.login_input__name {
  width: 70%;
}

}