body {
  display: flex;
  height: 100vh;
  font-family: "Poppins";
  margin: 0;
  box-sizing: border-box;
}

.left {
  position: relative;
  flex: 1.5;
  background: url("images/axville-SXGVliZGS7I-unsplash.jpg") no-repeat center
    right;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.left::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.logo {
  z-index: 1;
  font-size: 2rem;
  font-weight: bold;
  background-color: rgba(104, 104, 104, 0.11);
  width: 100%;
  text-align: center;
}

.right {
  flex: 2;
  background: #111111;
  color: #eaeaea;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

form {
  background: #1e1e1e;
  color: #eaeaea;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem 1rem;
  width: 100%;
  height: 50vh;
  padding: 2rem;
  box-sizing: border-box;
  margin: 0 auto;
}
.form-intro {
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

input {
  box-sizing: border-box;
  background: #2a2a2a;
  border: 2px solid #333333;
  color: #ffffff;
  width: 100%;
  padding: 0.75rem;
}

input:focus {
  border-color: #00bfff;
  box-shadow: 0 0 8px #00bfff;
  outline: none;
}

button {
  background: #00bfff;
  color: #ffffff;
  border-radius: 12px;
  width: 50%;
  padding: 10px;
  border: 2px solid #009acd;
}

button:hover {
  background: #009acd;
  border-color: #0077aa;
}

a {
  color: #ff3b3b;
}

.right-text {
  box-sizing: border-box;
  width: 100%;
  padding-left: 32px;
}
