body{
   margin: 0;
   padding: 0;
   background-color: #000000;
   scroll-behavior: smooth;
}

.container{
   font-family: Arial, Helvetica, sans-serif;
   color: white;
   display: flex;
   flex-direction: column;
   align-items: center;
   position: relative;
}

header{
   position: absolute;
   top: 0;
   right: 0;
   left: 0;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 40px;
   z-index: 999;
   background-color: #4b4b4b5b;
   backdrop-filter: blur(10px);


}

.head-left{
   display: flex;
   align-items: center;
}

.head-left img{
   width: 40px;
   height: 40px;
   border-radius: 20%;
}

.head-left button{
   border: none;
   padding: 10px 30px;
   border-radius: 20px;
   font-weight: 700;
   cursor: pointer;
   transition: 0.3s;
}

.head-left button:hover{
   opacity: 0.7;
}

.head-right{
   display: flex;
}

.head-right a{
   text-decoration: none;
   padding-left: 25px;
   color: white;
   font-size: 15px;
}

.main-section{
   position: relative;
   width: 100%;
   height: 100vh;
   overflow: hidden;

}

.main-vid{
   width: 100%;
   height: 100%;
   position: relative;
}

.main-video{
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.main-info{
   z-index: 1;
   position: absolute;
   top: 80px;
   left: 50px;
}

.main-info h1{
   font-size: 100px;
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
   font-weight: 900;
   font-style: normal;
   margin-top: 30px;
   margin-bottom: 20px;
   margin-left: 20px;
   

}

.head-left a{
   align-items: center;
   font-family: Arial, Helvetica, sans-serif;
   color: #000000;
   font-size: 16px;
   
}



.main-info p{
   color: white;
   max-width: 210px;

}

.main-info button{
  background-color: #b374b6;
  border: 2px solid #b374b6;
  padding: 10px 40px;
  border-radius: 20px;
  cursor: pointer;
  color: black;
  transition: 0.3s;
}

.main-info button:hover{
   background-color: transparent;
   color: white;
   box-shadow: 0 0 15px #edff66;

}

.login-box, .register-box-section{
    position: absolute; 
    top: 30%; 
    left: 260px; 
    transform: translate(-50%); 
    width: 400px; 
    height: 450px;
    background: rgba(0, 0, 0, 0.5); 
    border: 2px solid rgba(255, 255, 255, 0.3); 
    border-radius: 20px; 
    padding: 30px 40px; 
    box-sizing: border-box; 
    backdrop-filter: blur(15px); 
    -webkit-backdrop-filter: blur(15px); 
    z-index: 2; 
    display: flex;
    flex-direction: column;
    align-items: center; 
    justify-content: center; 
    color: white;
}

.register-box-section {
    display: none; 
    height: 450px; 
    
    margin-right: auto; 
    margin-left: 0px; 
}


.login-box h2 {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}


.input-box {
    position: relative;
    width: 300px;
    margin-bottom: 30px;
}

.input-box input {
    width: 100%;
    height: 50px;
    background: transparent;
    border: none;
    outline: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3); 
    color: white;
    padding: 0 35px 0 5px; 
    font-size: 16px;
    box-sizing: border-box; 
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 5px;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.7); 
    font-size: 16px;
    pointer-events: none; 
    transition: 0.5s; 
}

.input-box input:focus ~ label,
.input-box input:valid ~ label { 
    top: -20px;
    font-size: 14px;
    color: #007bff; 
}

.input-box .icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    pointer-events: none; 
}

.input-box input:focus ~ .icon,
.input-box input:valid ~ .icon {
    color: #007bff; 
}



.remember-forgot {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
    font-size: 14px;
    width: 100%;
    align-items: center;
}

.remember-forgot label {
    display: flex;
    align-items: center;
    cursor: pointer;
    
}

.remember-forgot input {
    margin-right: 5px;
    accent-color: #007bff;
    width: 16px;
    height: 15px;
}

.remember-forgot a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.remember-forgot a:hover {
    color: #007bff; 
}


.login-box button {
    width: 100%;
    height: 45px;
    background: #ffffff; 
    border: none;
    border-radius: 25px; 
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.login-box button:hover {
    background: #007bff; 
    color: white;
}

.register-box-section h2 {
    font-size: 2em;
    color: #fff;
    text-align: center;
    margin-bottom: 30px;
}

.register-box-section button {
    width: 100%;
    height: 45px;
    background: #ffffff; 
    border: none;
    border-radius: 25px; 
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.register-box-section button:hover {
    background: #007bff; 
    color: white;
}


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

.register-link p {
    margin: 0;
}

.register-link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.register-link a:hover {
    color: #007bff; 
}

.register-box-section .login-link {
    font-size: 14px;
    text-align: center;
    margin-top: 20px;
}

.register-box-section .login-link p {
    margin: 0;
}

.register-box-section .login-link a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.register-box-section .login-link a:hover {
    color: #007bff; 
}

.about-us{
   width: 100%;
   height: 100%;
   margin-top: 200px;
   display: flex;
   flex-direction: column;
   align-items: center;
   color: white;

}

.image-box{
   width: 960px;
   height:510px;
   overflow: hidden;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 50px;

}





.about-us p{
   font-size: 12px;
}



.about-us h1{
   font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
   font-weight: 900;
   font-size: 100px;
   max-width: 1150px;
   text-align: center;
   margin: 25px 0;
   text-transform: uppercase;
   background: linear-gradient(to right, #bb4db2, #a6659b,#9a58ad,#6070fd,#2a46ff,#0099ff,#a551c1);
   background-size: 200%;
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   animation: animate-gradient 2.5s linear infinite;
}

@keyframes animate-gradient {
   to{
      background-position: 200%;
   }
   
}

.autoBlur{
   animation: autoBlurAnimation linear both;
   animation-timeline: view();
}

@keyframes autoBlurAnimation{
   0%{
      filter: blur(40px);
   }
   40%,60%{
      filter: blur(0);
      transform: translateY(0px);
      opacity: 1;
   }

   100%{
      filter: blur(40px);
      transform: translateY(-200px);
      opacity: 0;
   }
}

footer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
    background-color: #000000; 
    color: #fff;
    font-size: 0.9em;
}


