/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  min-height: 100vh;
  width: 100%;
  background: #06aa00;
}
input[type="checkbox"] {
  transform: scale(0.5);
}
.containerx {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 430px;
  width: 90%;
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3);
}
.containerx .registration {
  display: none;
}
#check:checked ~ .registration {
  display: block;
}
#check:checked ~ .login {
  display: none;
}
#check {
  display: none;
}
.containerx .form {
  padding: 2rem;
}
.form p {
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.5rem;
}
.form input {
  height: 45px;
  width: 100%;
  padding: 0 12px;
  font-size: 12px;
  margin-bottom: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}
.form input:focus {
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
}
.form a {
  font-size: 12px;
  color: #f50909;
  text-decoration: none;
  text-align: center;
}
.form a:hover {
  text-decoration: underline;
}
.form input.button {
  color: #fff;
  background: #4e0e0e;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1.7rem;
  cursor: pointer;
  transition: 0.4s;
}
.form input.button:hover {
  background: brown;
}
.signup {
  font-size: 13px;
  text-align: center;
}
.signup label {
  color: brown;
  cursor: pointer;
}
.signup label:hover {
  text-decoration: underline;
}
