@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

/* Reset + base font */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('assests/throne.jpg') no-repeat;
  color: aliceblue;
  background-size: cover;
  background-position: center;
}

/* Wrapper box */
.wrapper {
  width: 420px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 30px;
  border-radius: 10px;
  padding: 30px 40px;
  margin-top: 100px;
}

/* Headings */
.wrapper h1 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 20px;
  
}

/* Form sections */
.form-box {
  margin-bottom: 20px;
}

.form-box.hidden {
  display: none;
}

/* Input fields with icons */
.input-field {
 width: 100%;
 height: 50px;
 margin: 30px 0px;
 position: relative;
}

.input-field i {
  position: absolute;
  right: 20px;
  top:50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.input-field input {
  width: 100%;
  height: 100%;
  border-radius: 40px;
  border: none;
  outline: none;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 16px;
  color: #fff;
  padding: 20px 45px 20px 20px;
}
.input-field input::placeholder {
  color: #fff;
}


.wrapper .remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -15px 0 15px;
  font-size: 14.5px;
}
.remember-forgot label input {
  margin-right: 3px;
  accent-color: #fff
}
.remember-forgot a {
  color: #fff;
  text-decoration: none;
}
.remember-forgot a:hover {
  text-decoration: underline;
}
.wrapper .btn{
    width: 100%;
    height: 45px;
    background: #fff;
    border: none;
    outline: none;
    border-radius: 40px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    font-size: 16px;
    color: #333;
    font-weight: 600;
}
.wrapper .register-link {
  text-align: center;
  font-size: 14.5px;
  margin: 20px 0 15px;
}
.register-link p a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}
.register-link p a:hover {
  text-decoration: underline;
}

.output {
 position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(20px);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  padding: 30px 40px;
  border-radius: 10px;
margin-top: 100px;
justify-content: center;
  align-items: center;
}
nav {
  width: 100%;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  padding: 0 100px;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(3px);
}

nav .logo {
  width: 80px;
  transition: transform 0.6s ease;
  display: inline-block;
  border-bottom: 2px solid transparent;
}

nav .logo:hover {
  transform: rotate(138deg);
  border-bottom: 2px solid #ffffff;
  box-shadow: 0 0 10px #d0c9d2;
  border-radius: 1000px;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
}

nav ul li {
  list-style: none;
}

nav ul li a {
       text-decoration: none;
      color: #FFFFFF; /* default color */
      font-size: 18px;
      font-weight: bold;
     padding: 6px 12px;
      border-radius: 6px;
      display: inline-block;
        transition: all 0.6s ease;
        border-bottom: 2px solid transparent;
        font-family: 'Courier New', Courier, monospace;
        gap: 100px;
 
}

nav ul li a:hover {
/*background: linear-gradient(to right, #FF003C, #D100FF); /* gradient hover */
  border-radius: 6px;
  border-bottom: 2px solid #ff0000;
  text-shadow: 0 0 10px #e26710; /* glowing effect */
  transform: scale(1.1);}
 