/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Video Styling */
#bg-video {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

/* Mute Button */
#mute-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 10px 14px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
}

/* Login UI */
.login-container {
  position: relative;
  z-index: 5;
  margin-top: 20vh;
  text-align: center;
  color: white;
  font-family: sans-serif;
}

.login-buttons {
  margin-top: 20px;
}

.btn {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  text-decoration: none;
  font-size: 16px;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.2s ease-in-out;
}

.primary {
  background-color: #e50914;
  color: white;
}

.secondary {
  background-color: #444;
  color: white;
}

.login-page {
  background: #111;
  color: white;
  font-family: sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.form-container {
  width: 90%;
  max-width: 400px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  box-shadow: 0 0 20px #000;
}

.form-container h1 {
  margin-bottom: 20px;
  font-size: 24px;
  text-align: center;
}

label {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  font-weight: bold;
}

input, select {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  margin-bottom: 10px;
}

.phone-input {
  display: flex;
  gap: 10px;
}

.phone-input select {
  flex: 0 0 80px;
}

.btn.primary {
  width: 100%;
  background: #e50914;
  color: white;
  border: none;
  font-size: 16px;
  padding: 12px;
  border-radius: 5px;
  margin-top: 10px;
  cursor: pointer;
}

.switch-link {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
}