/* -------------------- FONT -------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

/* -------------------- PAGE 1 -------------------- */
body {
  background-image: url('image/firstpage1.gif');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* -------------------- HEADER -------------------- */
.header {
  width: 100%;
  background-color: #01013d89;
  box-shadow: #888;
  padding: 20px 40px;
  position: fixed;
  top: 0;
  z-index: 20;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-animated {
  width: 40px;
  height: 40px;
  margin-left: -10px;
  margin-right: 10px;
}

.nav-center {
  display: flex;
  gap: 125px;
}

.nav-link {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background-color: #9298cd;
  transition: width 0.2s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-right {
  display: flex;
  gap: 12px;
}

.btn {
  padding: 8px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
}

.btn-outline {
  border: 1px solid #ffffff;
  color: #ffffff;
  background-color: transparent;
}

.btn-outline:hover {
  background-color: #2d3883;
}

.btn-filled {
  border: none;
  color: #ffffff;
  background-color: #4c5bdc;
}

.btn-filled:hover {
  background-color: #40446acc;
}



/* -------------------- SIGN UP START HERE -------------------- */
.signup-page {
  margin: 0;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
}

.background {
  width: 100%;
  height: 100vh;
  background: radial-gradient(circle at center, #06235e 0%, #0a001f00 60%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

.signup-card {
  width: 430px;
  padding: 40px;
  margin: 120px auto 40px auto;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.605);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  color: white;
  text-align: center;
  box-shadow: 0 0 40px rgba(72, 85, 126, 0.652);
}

.logo-box {
  width: 80px;
  height: 80px;
  margin: 0 auto 15px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  width: 60px;
}

.title {
  margin: 10px 0;
  font-size: 23px;
  font-weight: 600;
}

.subtitle {
  color: #8b8fa6;
  font-size: 13px;
  margin-bottom: 30px;
}
.signup-form input,
.signup-form select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #9298cd;
}

.signup-form label {
  color: #9298cd;    
  font-size: 14px; 
  font-weight: 500; 
  margin-bottom: 5px;
  display: block;   
}


.signup-form select option {
  background: #010724; 
  color: white; 
}
.form-row {
  display: flex;
  gap: 10px;
}

.check {
  text-align: left;
  margin-bottom: -100++px;
  font-size: 12px;
}

.btn-signup {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(45deg, #29029d, #000000);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-signup:hover {
  transform: scale(1.03);
}

.social-box {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-box img {
  width: 30px;
  cursor: pointer;
}
