body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  min-height: 100vh;
background: url('https://images.unsplash.com/photo-1477346611705-65d1883cee1e?fm=jpg&q=60&w=3000&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8Mnx8ZGFyayUyMGxhbmRzY2FwZXxlbnwwfHwwfHx8MA%3D%3D') no-repeat center center/cover;
  position: relative;
 

}


nav {
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.4);
  color: white;
  backdrop-filter: blur(10px);
}

nav ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

nav a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

nav a:hover {
  color: #ffc107;
}

.hero {
  text-align: center;
  padding: 3rem 1rem;
  color: white;
  
}

.start-btn {
  background: #ffc107;
  border: none;
  padding: 12px 25px;
  margin-top: 1rem;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.start-btn:hover {
  background: #e0a800;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.form-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  margin: 2rem auto;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
  backdrop-filter: blur(8px);
  overflow: hidden;
}

.forms-container {
  display: flex;
  width: 200%;
  transition: transform 0.5s ease-in-out;
}

.form-box {
  width: 50%;
  padding: 2rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  transition: all 0.3s ease;
}

.form-box h3 {
  text-align: center;
  margin-bottom: 1rem;
}

.form-box input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 0.7rem;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
  color: white;
  outline: none;
  transition: all 0.3s ease;
}

.form-box input:focus {
  border-color: #ffc107;
  box-shadow: 0 0 10px #ffc107;
  background: rgba(255,255,255,0.2);
}

.form-box button {
  width: 100%;
  padding: 0.7rem;
  background: #ffc107;
  color: black;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-box button:hover {
  background: #e0a800;
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.form-box a {
  color: #ffc107;
  text-decoration: none;
  transition: color 0.3s ease;
}

.form-box a:hover {
  color: #e0a800;
}

footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,0.4);
  color: white;
  backdrop-filter: blur(6px);
}
