/* 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; /* fixed */
}

body{
  min-height: 100vh;
  width: 100%;
  background: #f3f4f6; /* light gray */
}

.container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 430px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
}

.container  .registration{
  display: none;
}

#check:checked ~ .registration{
  display: block;
}

#check:checked ~ .login{
  display: none;
}

#check{
  display: none;
}

.container .form{
  padding: 2rem;
}

.form header{
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.5rem;
  color: #333;
}

.form input{
  height: 50px;
  width: 100%;
  padding: 0 15px;
  font-size: 16px;
  margin-bottom: 1.2rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
}

.form input:focus{
  border-color: #f97316;
  box-shadow: 0 0 5px rgba(249,115,22,0.3);
}

.form a{
  font-size: 14px;
  color: #f97316; /* orange */
  text-decoration: none;
}

.form a:hover{
  text-decoration: underline;
}

/* BUTTON FIXED */
.form .button{
  color: #fff;
  background-color: #f97316; /* BuildCraft orange */
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 1rem;
  cursor: pointer;
  transition: 0.3s;
  border: none;
}

.form .button:hover{
  background-color: #e46310;
}

/* FIXED label spelling */
/* NORMAL TEXT */
.signup {
  font-size: 15px;
  text-align: center;
  color: #333;
}

/* SIGN UP (orange clickable) */
.signup label {
  color: #f97316;
  cursor: pointer;
  font-weight: 500;
}

.signup label:hover {
  text-decoration: underline;
}