/* General Styles */
* {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
}

body {
    overflow: hidden;
}

/* Banner Background */
.banner {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), 
        url(https://wallpapers-clan.com/wp-content/uploads/2024/03/starfall-night-sky-mountains-aesthetic-gif-cover-desktop-wallpaper.gif);
    background-size: cover;
    background-position: center;
    position: relative;
}

/* Navbar */
.navbar {
    width: 85%;
    margin: auto;
    padding: 35px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 120px;
    cursor: pointer;
}

.navbar ul li {
    list-style: none;
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

.navbar ul li a {
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
}

.navbar ul li::after {
    content: '';
    height: 3px;
    width: 0;
    background: #009688;
    position: absolute;
    left: 0;
    bottom: -10px;
    transition: 0.5s;
}

.navbar ul li:hover::after {
    width: 100%;
}

/* Language Menu */
.language-menu {
    position: relative;
}

.language-menu:hover .language-options {
    display: block;
}

.language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    width: 150px;
    list-style: none;
    padding: 10px 0;
    z-index: 10;
}

.language-options li {
    padding: 10px 20px;
}

.language-options li a {
    color: white;
    text-decoration: none;
    display: block;
}

.language-options li a:hover {
    background-color: #009688;
}

/* Wrapper (Login Form) */
.wrapper {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, 0);
    width: 500px;
    height: 540px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 0 30px white;
    display: none; /* Initially hidden */
    justify-content: center;
    align-items: center;
    z-index: 2; /* Ensure it's above the content */
}

.wrapper  .remember-forgot .boxx{display: inline-block;
    width: 250px;
}
.wrapper  .login-register .boxx{display: inline-block;
    width: 250px;
    border: 20px solid transparent;
}
.wrapper  #loginn{
    left:90px;
}
.wrapper  #closeBtn{
    left:90px;
}

.form-box h2 {
    font-size: 2em;
    color: white;
    text-align: center;
}

.input-box {
    position: relative;
    width: 100%;
    height: 50px;
    border-bottom: 2px solid white;
    margin: 30px 0;
}

.input-box label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    font-size: 1em;
    color: white;
    pointer-events: none;
    transition: 0.3s;
}

.input-box input:focus~label,
.input-box input:not(:placeholder-shown)~label {
    top: -10px;
    color: #009688;
    font-size: 0.9em;
}

.input-box input {
    width: 100%;
    height: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1em;
    color: white;
    font-weight: 600;
    padding: 0 10px;
}

.input-box .icon {
    position: absolute;
    right: 10px;
    font-size: 1.2em;
    color: white;
    line-height: 57px;
}

button {
    width: 200px;
    padding: 15px 0;
    text-align: center;
    border-radius: 25px;
    font-weight: bold;
    border: 2px solid #009688;
    background: transparent;
    color: #fff;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

button:hover {
    background: #009688;
    border: none;
}

/* Content */
.content {
    width: 100%;
    position: absolute;
    top: 65%;
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    z-index: 1; /* Ensure it stays below the wrapper */
}

.content h1 {
    font-size: 70px;
    margin-bottom: 20px;
}

.content p {
    margin: 20px auto;
    font-weight: 100;
    line-height: 25px;
}

button span {
    background: #009688;
    height: 100%;
    width: 0;
    border-radius: 25px;
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
    transition: 0.5s;
}

button:hover span {
    width: 100%;
}
