/* -------------------- 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;
}






/* -------------------- LOG IN START HERE -------------------- */
.login-page {
  margin: 0;
  margin-top: 150px;
  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;
}

.login-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;
}

.login-form label {
  color: #9298cd;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  display: block;
  text-align: left;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #9298cd;
}

.login-form input::placeholder {
  color: #b7b7b7;
}

.forgot-pass {
  display: block;
  text-align: right;
  font-size: 12px;
  color: #8b8fa6;
  margin-top: -10px;
  margin-bottom: 20px;
  text-decoration: none;
}

.forgot-pass:hover {
  color: white;
}

.btn-login {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 12px;
  background: linear-gradient(45deg, #29029d, #000000);
  color: white;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.btn-login:hover {
  transform: scale(1.03);
}

.signup-text {
  margin-top: 20px;
  font-size: 13px;
  color: #8b8fa6;
}

.signup-text a {
  color: white;
  text-decoration: none;
}

.signup-text a:hover {
  text-decoration: underline;
}

.social-box {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.social-box img {
  width: 30px;
  cursor: pointer;
  opacity: 0.8;
  transition: 0.2s;
}

.social-box img:hover {
  opacity: 1;
}

