body {
  font-family: 'Segoe UI', sans-serif;
  background:#250243;
  color: #fff;
  align-items: center;
  height: 100vh;
  margin: 0;
}
header {
  background-color: #250243;
  color: white;
  display: flex;
  justify-content: center;
  align-items:center;
  padding: 12px 30px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.signup-container {
  background: #250243;
  padding: 120px;
  padding-left: 70  0px;
  backdrop-filter: blur(8px);
  text-align: center;
  max-width: 400px;
  width: 100%;
  align-items: center;
  
}

.signup-container h2 {
  font-size: 48px;
  margin-bottom: 40px;
  color: #ffffff;
  
}

.signup-container p {
  font-size: 24px;
  margin-bottom: 20px;
  color: #ddd;
}

form input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: none;
  border-radius: 8px;
  background-color: #eee;
}

form button {
  width: 100%;
  padding: 12px;
  background-color: #e50914;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

form button:hover {
  background-color: #ff2626;
}

.login-link {
  margin-top: 15px;
  font-size: 13px;
}
.login-link a {
  color: #fff;
  text-decoration: underline;
}


    .logo img {
      width: 80px;
    }

    nav a {
      margin: 0 15px;
      text-decoration: none;
      color: white;
      font-weight: 500;
      font-size: 27px;
      position: relative;
      display: inline-block;
      transition: color 0.3s ease;
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0%;
      height: 2px;
      background: #2100c4c5;
      transition: width 0.3s ease;
    }

    nav a:hover::after {
      width: 100%;
    }