#login {  
  background-color: transparent;
  background-image: repeating-radial-gradient(
      circle at 0 0,
      transparent 0,
      rgba(244, 244, 242, 0.5) 21px
    ),
    repeating-linear-gradient(
      rgba(224, 224, 223, 0.33),
      rgba(224, 224, 223, 0.33)
    );
}

.form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: #ffffff;
  padding: 30px;
  width: 450px;
}

.form button {
  align-self: flex-end;
}

.flex-column > label {
  color: var(--dark);
  font-weight: 600;
}

.inputForm {
  border: 1.5px solid #ecedec;
  height: 50px;
  display: flex;
  align-items: center;
  padding-left: 10px;
  transition: 0.2s ease-in-out;
}

.input {
  margin-left: 10px;
  border: none;
  width: 85%;
  height: 100%;
}

.input:focus {
  outline: none;
}

.inputForm:focus-within {
  border: 1.5px solid var(--greenCTA);
}

.flex-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.flex-row > div > label {
  font-size: 14px;
  color: var(--dark);
  font-weight: 400;
}

.button-submit {
  margin: 20px 0 10px 0;
  background-color: var(--dark);
  border: none;
  color: white;
  font-size: 15px;
  font-weight: 500;
  height: 50px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
}

.button-submit:hover {
  background-color: var(--greenCTA);
}

#login .btn {
  margin-top: 10px;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  gap: 10px;
  border: 1px solid #ededef;
  background-color: white;
  cursor: pointer;
  transition: 0.2s ease-in-out;
}

#login .btn:hover {
  border: 1px solid var(--greenCTA);
  ;
}

    