html,
body {
  height: 100%;
}

nav {
  position: static;
}

.login-container {
  height: 100%;
  max-height: 700px;
  display: flex;
  flex-direction: row;
  align-items: center;
}

.form {
  padding: 4rem;
  flex: 1;
}

.form-img {
  flex: 2;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-image: url("https://img-sneaksupincommerce.mncdn.com/Content/Images/Thumbs/0139310.jpeg");
}

.form b {
  font-size: 2rem;
}

form {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

input {
  font-family: "Roobert", sans-serif;
  font-size: 16px;
  padding: 18px;
  outline: none;
  border: 1.5px solid rgb(201, 201, 201);
  transition: 0.1s all linear;
}

input:focus {
  border: 1.5px solid black;
  outline: 4px solid rgb(168, 168, 168);
}

label {
  margin-top: 15px;
  font-weight: bold;
}
.login-btn {
  font-family: "Roobert", sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: rgb(148, 230, 54);
  padding: 15px;
  transition: 0.1s all linear;
  text-align: center;
}

.register-btn {
  font-family: "Roobert", sans-serif;
  font-size: 16px;
  font-weight: bold;
  background-color: rgb(0, 0, 0);
  color: #fff;
  padding: 15px;
  transition: 0.1s all linear;
  text-align: center;
}

.btn:hover {
  opacity: 0.8;
}

.btn:active {
  opacity: 0.7;
}
