* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background-color: #000;
  font-family: Arial, sans-serif;
  margin: 0%;
  padding-bottom: 40px;
}
.video-background {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1; 
}
.hamburger {
  display: none;
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 10001;
}
.navbar {
  height: 40px;
  display: flex;
}

.menu {
  display: flex;
  width: 100%;
  position: fixed;
  top: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  justify-content: center;
  display: flex;
  align-items: center;
  z-index: 1000;
}

.content-row {
  display: flex;
  justify-content: center;
  gap: 27vw;
  padding: 2rem 4rem; 
  margin: 2.0%;
}
.left-col h1 {
  font-size: 2.5rem;
  color: #fff;
  text-shadow: 3px 3px 5px rgba(0, 0, 0, 4);
}
.left-col span {
  color: #9653d0;
  font-size: 3rem;
  text-shadow: 3px 3px 5px 3px rgba(0, 0, 0, 4);
}
.right-col {
  max-width: 300px;
  min-width: 300px;
  width: auto;
  height: auto;
}
.content h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
}
.content span {
  color: #8a2be2;
  border-color: #000;
  border-width: 3px;
}

.logo {
  color: #8a2be2;
  font-size: 35px;
  font-family: Arial;
  margin-top: 5px;
}
ul {
  display: flex;
  justify-content: center;
}
ul li {
  list-style: none;
  margin: 1 1.4vw;
  font-size: 14px;
  padding: 2% ;
}
ul li a {
  text-decoration: none;
  color: #fff;
  font-family: Arial;
  font-weight: bold;
  transition: 0.3s ease-in-out;
  padding: 15px;
}
ul li a:hover {
  color: #a474d6;
}
.main {
  position: relative;
  z-index: 1;
  color: white;
}
.icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 10px;
  color: #fff;
}
.icon:hover{
  color: #dca9fe;
}
.link {
  margin-top: 15px;
  font-size: 30px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
.link:hover{
  color: #c27fef;
}
.liw {
  margin: 20px;
  font-size: 14px;
  color: #fff;
}
.liw :hover{
  color: #935ccd;
}
.form {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  padding: 20px;
  color: #ffffffbf;
  text-align: center;
  border: 5px solid #a665e72b;
}
.form h2 {
  text-align: center;
  color: #fff;
  margin-bottom: 15px;
}
.form input,
.form textarea {
  width: 100%;
  height: 35px;
  background: transparent;
  border: none;
  border-bottom: 1px solid #8a2be2;
  color: #fff;
  font-size: 15px;
  margin-top: 20px;
  outline: none;
}

.form input:focus ,
.form input:focus {
  outline: none;
}
::placeholder {
  color: #ffffff57;
  font-family: Arial;
}
.password-container {
  position: relative;
}


.password-container img {
  position: absolute;
  right: 10px;
  bottom: 0;
  transform: translateY(-50%);
  width: 25px;
  cursor: pointer;
}
.btnn {
  width: 100%;
  height: 40px;
  background: #8a2be2;
  border: none;
  margin-top: 20px;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  color: #fff;
  transition: 0.4s ease;
}
.btnn:hover {
  background: #dca9fe;
  color: #8a2be2;
}
.btnn a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}
.signup-container {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 30px;
  padding: 20px;
  color: #ffffffbf;
  text-align: center;
  border: 5px solid #a665e72b;
}
.signup-container h2 {
  margin-bottom: 20px;
}
.signup-container input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: none;
  border-bottom: 1px solid #8a2be2;
  background: transparent;
  color: #fff;
}
.signup-container input:focus {
  outline: none;
}
.signup-container button {
  width: 100%;
  padding: 10px;
  background: #8a2be2;
  border: none;
  border-radius: 5px;
  color: #200909;
  font-weight: bold;
  font-size: 18px;
  cursor: pointer;
  margin-top: 20px;
}
.signup-container button:hover {
  background: #dca9fe;
}
.signup-container a {
  color: #ffffff;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .hamburger {
    display: block;
  }
  .menu {
    position: relative;
    top: -100vh;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateY(-100vh);
    transition: transform 0.6s ease-in-out;
}
.menu.open {
    transform: translateY(0);
    animation: fadeInOpacity 0.6s forwards;
    width: 100vw;
    height: 100vh;
    position: fixed;
    opacity: 1;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
    justify-content: center;
    align-items: center;
    z-index: 10000; 
}
@keyframes fadeInOpacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.menu ul {
  flex-direction: column;
  text-align: center;
  padding: 18px 0;
  font-size: 35px;
}
  ul li {
    padding: 18px 0;
    font-size: 35px;
  }
  .content-row {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
    align-items: center;
  }
  h1{
    margin-left: 15%;
    margin-right: 130%;
  }
  .left-col,
  .right-col {
    flex: none;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
  }
  .left-col h1 {
    margin-bottom: 10%; 
  }
  .form {
    width: 90%;

    padding: 15px;
  }
}