/* Importing Google font - Open Sans */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
}

body {
    height: 100vh;
    width: 100%;
    background: url("hero-bg.jpg") center/cover no-repeat;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 10;
    padding: 0 10px;
}

.navbar {
    display: flex;
    padding: 30px 0;
    align-items:center;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: space-between;
}

.navbar .hamburger-btn {
    display: none;
    color:#dddddd;
    cursor: pointer;
    font-size: 1.5rem;
}

.navbar .logo {
    gap: 20px;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar .logo img {
    width: 120px;
    border-radius: 100%;
}

.navbar .logo h2 {
    color: #fff;
    font-weight: 1000;
    font-size: 2.0rem;
}
.navbar .logo h2:hover{
    color:orange;
}

.navbar .links {
    padding-right: 30px ;
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.navbar .close-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    display: none;
    color: #000;
    cursor: pointer;
}

.navbar .links a {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
    text-decoration: none;
    transition: 0.1s ease;
}

.navbar .links a:hover {
    color: #19e8ff;
}

.login-btn {
    float: right;
    margin-right: 200px;
    font-family: 'Orbitron',sans-serif;
    border:none;
    outline:none;
    background: #d4af37;
    color: #030303;
    font-size: 1rem;
    font-weight: 900;
    padding: 8px 50px;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    transition: 0.15s ease;
}

 .login-btn:hover {
    background-color: transparent;
    color:#d4af37;
}
.form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    max-width: 720px;
    background: #000;
    border: 2px solid #787878;
    transform: translate(-50%, -70%);
}

.show-popup .form-popup {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%);
    transition: transform 0.3s ease, opacity 0.1s;
}

.form-popup .close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    color: #878484;
    cursor: pointer;
}

.blur-bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    height: 100%;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: 0.1s ease;
}

.show-popup .blur-bg-overlay {
    opacity: 1;
    pointer-events: auto;
}

.form-popup .form-box {
    color: #ddd;
    display: flex;
}

.form-box .form-details {
    width: 100%;
    color: #fff;
    max-width: 330px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.login .form-details {
    padding: 0 40px;
    background: url("login-img.jpg");
    background-position: center;
    background-size: cover;
}

.signup .form-details {
    padding: 0 20px;
    background: url("signup-img.jpg");
    background-position: center;
    background-size: cover;
}

.form-box .form-content {
    width: 100%;
    padding: 35px;
}

.form-box h2 {
    text-align: center;
    margin-bottom: 29px;
}

form .input-field {
    position: relative;
    height: 50px;
    width: 100%;
    margin-top: 20px;
}

.input-field input {
    height: 100%;
    width: 100%;
    background: none;
    outline: none;
    font-size: 0.95rem;
    padding: 0 15px;
    border: 1px solid #717171;
    border-radius: 3px;
}

.input-field input:focus {
    border: 1px solid #00bcd4;
}

.input-field label {
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
    color: #4a4646;
    pointer-events: none;
    transition: 0.2s ease;
}

.input-field input:is(:focus, :valid) {
    padding: 16px 15px 0;
}

.input-field input:is(:focus, :valid)~label {
    transform: translateY(-120%);
    color: #00bcd4;
    font-size: 0.75rem;
}

.form-box a {
    color: #00bcd4;
    text-decoration: none;
}

.form-box a:hover {
    text-decoration: underline;
}

form :where(.forgot-pass-link, .policy-text) {
    display: inline-flex;
    margin-top: 13px;
    font-size: 0.95rem;
}

form button {
    width: 100%;
    color: #fff;
    border: none;
    outline: none;
    padding: 14px 0;
    font-size: 1rem;
    font-weight: 500;
    border-top-left-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    margin: 25px 0;
    background: #787878;
    transition: 0.2s ease;
}

form button:hover {
    background: transparent;
    color: #faf6f6;
}

.form-content .bottom-link {
    text-align: center;
}

.form-popup .signup,
.form-popup.show-signup .login {
    display: none;
}

.form-popup.show-signup .signup {
    display: flex;
}

.signup .policy-text {
    display: flex;
    margin-top: 14px;
    align-items: center;
}

.signup .policy-text input {
    width: 14px;
    height: 14px;
    margin-right: 7px;
}

@media (max-width: 950px) {
    .navbar :is(.hamburger-btn, .close-btn) {
        display: block;
    }

    .navbar {
        padding: 15px 0;
    }

    .navbar .logo img {
        display: none;
    }

    .navbar .logo h2 {
        font-size: 1.4rem;
    }

    .navbar .links {
        position: fixed;
        top: 0;
        z-index: 10;
        left: -100%;
        display: block;
        height: 100vh;
        width: 100%;
        padding-top: 60px;
        text-align: center;
        background: #fff;
        transition: 0.2s ease;
    }

    .navbar .links.show-menu {
        left: 0;
    }

    .navbar .links a {
        display: inline-flex;
        margin: 20px 0;
        font-size: 1.2rem;
        color: #f3f0f0;
    }

    .navbar .links a:hover {
        color: #00BCD4;
    }

    .navbar .login-btn {
        font-size: 0.9rem;
        padding: 7px 10px;
    }
}

@media (max-width: 760px) {
    .form-popup {
        width: 95%;
    }

    .form-box .form-details {
        display: none;
    }

    .form-box .form-content {
        padding: 30px 20px;
    }
}

.center-text {
    display: flex;
    font-weight: bold;
    justify-content: center;  /* Centers horizontally */
    align-items: center;  /* Centers vertically */
    height: 100vh;  /* Full viewport height */
}

.center-text {
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
    font-weight: normal;
    color: #f2f7f9; /* Cyan glow */
    padding-left: 250px;
    padding-right: 250px;
    margin-top: 100px;
}
 .center-text:hover{
    color: #d4af37;
 }




 @import url("https://fonts.googleapis.com/css?family=Raleway");

 :root {
   --glow-color: hsl(33, 98%, 49%);
 }
 
 *,
 *::before,
 *::after {

 }
 
 html,
 body {
   height: 100%;
   width: 100%;
   overflow: hidden;
 }
 
 body {
   min-height: 100vh;
   display: center;
   justify-content: center;
   align-items: center;
   background:image(images/hero-bg.jpg);
 }
 
 .glowing-btn {
   position: relative;
   color:#d4af37 ;
   border-top: none;
   border-bottom: none;
   border-left: none;
   border-right: none;
   cursor: pointer;
   padding: 0.30em 1em;
   background:transparent;
   border-top-left-radius: 30px;
   border-bottom-right-radius:30px ;
   border-style: double;
   perspective: 2em;
   font-family: "Raleway", sans-serif;
   font-size: 2.0em;
   font-weight: 900;
   letter-spacing: 1pt;
   animation: flicker 2s linear infinite;
 }
 
 .glowing-txt {
   float: left;
   margin-right: -0.2em;
   margin-left: -0.2em;
   border: none;
   font-family: 'Courier New', Courier, monospace;
   animation: text-flicker 3s linear infinite;
 }
 
 .faulty-letter {
  font-family: ;
   opacity: 0.5;
   animation: faulty-flicker 2s linear infinite;
 }
 
 .glowing-btn::before {
   content: "";
   color: #d4af37;
   position: absolute;
   top: 0;
   bottom: 0;
   left: 0;
   right: 0;
   opacity: 0.1;
   transform: translateY(120%) rotateX(95deg) scale(1, 0.35);
   border: none;
   pointer-events: none;
 }
 
 .glowing-btn::after {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   opacity: 0;
   z-index: -1;
   border: none;
   background-color:transparent
   transition: opacity 100ms linear;
 }
 
 .glowing-btn:hover {
   color: #d4af37;
   background-color: transparent;
   font-family: Arial, Helvetica, sans-serif;
   text-shadow: none;
   animation: none;
 }
 
 .glowing-btn:hover .glowing-txt {
   animation: none;
 }
 
 .glowing-btn:hover .faulty-letter {
   animation: none;
   text-shadow: none;
   opacity: 1;
 }
 
 .glowing-btn:hover:before {
   filter: blur(1.5em);
   opacity: 1;
 }
 
 .glowing-btn:hover:after {
   opacity: 1;
 }
 
 @keyframes faulty-flicker {
   0% {
     opacity: 0.1;
   }
   2% {
     opacity: 0.1;
   }
   4% {
     opacity: 0.5;
   }
   19% {
     opacity: 0.5;
   }
   21% {
     opacity: 0.1;
   }
   23% {
     opacity: 1;
   }
   80% {
     opacity: 0.5;
   }
   83% {
     opacity: 0.4;
   }
 
   87% {
     opacity: 1;
   }
 }
 
 @keyframes text-flicker {
   0% {
     opacity: 0.1;
   }
 
   2% {
     opacity: 1;
   }
 
   8% {
     opacity: 0.1;
   }
 
   9% {
     opacity: 1;
   }
 
   12% {
     opacity: 0.1;
   }
   20% {
     opacity: 1;
   }
   25% {
     opacity: 0.3;
   }
   30% {
     opacity: 1;
   }
 
   70% {
     opacity: 0.7;
   }
   72% {
     opacity: 0.2;
   }
 
   77% {
     opacity: 0.9;
   }
   100% {
     opacity: 0.9;
   }
 }
 
 @keyframes border-flicker {
   0% {
     opacity: 0.1;
   }
   2% {
     opacity: 1;
   }
   4% {
     opacity: 0.1;
   }
 
   8% {
     opacity: 1;
   }
   70% {
     opacity: 0.7;
   }
   100% {
     opacity: 1;
   }
 }
 
 @media only screen and (max-width: 600px) {
   .glowing-btn{
     font-size: 1em;
   }
 }
 
