@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  height: 100vh;
  overflow: hidden;
}

/* Video background */
.video-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* --- NAVBAR --- */
header {
  position: absolute;
  top: 0;
  left:565px;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

header .logo h2 a {
  text-decoration: none;
  color: white;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 40px;
}

nav ul li a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 16px;
  transition: 0.3s;
}

nav ul li a:hover {
  color: #00bcd4;
}

/* Play button */
nav ul li.btn a {
  background: white;
  color: black;
  border-radius: 10px;
  padding: 8px 20px;
  font-weight: 600;
  transition: 0.3s;
}

nav ul li.btn a:hover {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* --- LOGIN FORM --- */
.ETS {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 50px;
  width: 350px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.8s ease-in-out;
  margin-top: 10px; /* pushes it slightly below the navbar */
}

.form h2 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 25px;
  color: #fff;
}

/* Inputs */
.login-form input {
  width: 100%;
  padding: 12px 15px;
  margin: 10px 0 20px 0;
  border: none;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
}

.login-form input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.login-form input:focus {
  background-color: rgba(255, 255, 255, 0.3);
  border: 1px solid #00bcd4;
}

/* Button */
.login-button {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(135deg, #00bcd4, #00acc1);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.login-button:hover {
  transform: scale(1.05);
  background: linear-gradient(135deg, #26c6da, #00acc1);
}

/* Signup link */
.signup-link {
  margin-top: 20px;
  font-size: 14px;
  color: #eee;
}

.signup-link a {
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
}

.signup-link a:hover {
  text-decoration: underline;
}

/* Fade-in animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Forgot password link */

.forgot-password {
  margin-top: 10px;
  font-size: 14px;
}

.forgot-password a {
  color:#00bcd4;
  text-decoration: none;
}

.forgot-password a:hover {
  text-decoration: underline;
}

.login-form button {
    padding: 8px 15px;
    background-color: #667eea;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1em;
    transition: 0.3s;
}



