body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  font-family: 'Segoe UI', sans-serif;
  background: url('loginpage3.0.jpg') no-repeat center top;
  background-position-y: 0px;
  background-size: cover;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
}


.navbar {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  backdrop-filter: blur(12px);
  background: rgba(15, 15, 30, 0.6);
  padding: 14px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.navbar .logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  color: white;
  font-weight: 600;
  gap: 10px;
}

.navbar .logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #00e0ff;
  background-color: #ffffff10;
  padding: 3px;
}

.navbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
}

.navbar ul li a {
  position: relative;
  text-decoration: none;
  color: #e0e0ff;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.navbar ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #d17bff, #00b2ff, #00fff0);
  border-radius: 50px;
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.navbar ul li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}




.login-container {
  margin-left: 12%;
  
  height: 400px;
  align-items: center;
  margin-bottom: 10%;
}

.login-box {
  width: 350px;
  padding: 34px;
  padding-left:15px;
  border-radius: 25px;
  position: relative;
  backdrop-filter: blur(15px);
  background: transparent;
  box-shadow: 0 0 30px rgba(0, 255, 255, 0.2), 0 0 60px rgba(255, 0, 255, 0.1);
  animation: fadeIn 1s ease-out;
  transition: 0.3s;
  text-align: center;
  color: #fff;
}

.login-box::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(90deg, #d17bff, #00b2ff, #00fff0);
  z-index: -1;
  border-radius: 27px;
  padding: 2px;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  filter: blur(2px);
}


.login-title {
  text-align: center;
  font-size: 1.90rem;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.2);
}

.avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: url('https://img.icons8.com/ios-filled/100/ffffff/user-male-circle.png') no-repeat center;
  background-size: contain;
}

.login-box input {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: none;
  outline: none;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  transition: 0.3s;
}

.login-box input::placeholder {
  color: #ccc;
}

.login-box input:focus {
  box-shadow: 0 0 10px #00f0ff;
}

.options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin: 10px 0;
  color: white;
}

.options .remember {
  display: flex;
  align-items: center;
  gap: 6px;
}

.login-btn {
  width: 100%;
  padding: 12px;
  margin-top: 10px;
  border: none;
  border-radius: 25px;
  background: linear-gradient(to right, #ff00c8, #00f0ff);
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 0 0 15px #00f0ff;
}

.login-btn:hover {
  transform: scale(1.03);
}

.divider {
  margin: 20px 0;
  position: relative;
  color: #ccc;
}

.divider::before,
.divider::after {
  content: "";
  height: 1px;
  width: 40%;
  background: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 50%;
}

.divider::before { left: 0; }
.divider::after { right: 0; }

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  color: #333;
  padding: 10px;
  border-radius: 25px;
  border: none;
  cursor: pointer;
  font-weight: 500;
  width: 100%;
  box-sizing: border-box;
}

.google-btn img {
  height: 20px;
}
.options .remember {
display: flex;
align-items: center;
gap: 6px;
white-space: nowrap; /* Prevents the text from wrapping */
}
.input-group__error {
color: yellow;
font-size: 13px;
margin-top: -5px;
margin-bottom: 5px;
text-align: left;
}

.input--error {
border: 2px solid red !important;
}
.input--error2 {
border: 2px solid red !important;
}
