body.login-body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #0b0223, #0c023a);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
}

.login-container {
  width: 100%;
  max-width: 700px;
  padding: 20px;
}

.login-box {
  background:  rgb(23, 39, 95);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.logo {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: bold;
}

.logo span {
  color: #ffffff;
}

.btn {
  background: #26d7f2;
  color: rgb(0, 0, 51);
  padding: 8px 16px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 1rem;
  transition: background 0.3s ease;
}

.btn:hover {
  background: rgb(4, 4, 90);
  color: white;
}

.login-title {
  text-align: center;
  font-size: 2.5rem;
  color: rgb(255, 255, 255);
  margin-bottom: 30px;
  margin-top: -20px;
}

/* Tabs */
.role-tabs {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.tab {
  cursor: pointer;
  font-weight: bold;
  padding-bottom: 5px;
  border-bottom: 2px solid transparent;
  color: #ffffff;
  transition: all 0.3s ease;
}

#mentee:checked ~ .role-tabs label[for="mentee"],
#mentor:checked ~ .role-tabs label[for="mentor"] {
  color: skyblue;
  border-color: rgb(0, 183, 255);
}

/* Forms */
.login-form {
  display: none;
  flex-direction: column;
  gap: 15px;
}

#mentee:checked ~ .form-mentee {
  display: flex;
}

#mentor:checked ~ .form-mentor {
  display: flex;
}

.input-group {
  display: flex;
  align-items: center;
  background:  rgb(38, 57, 126);
  border-radius: 10px;
  padding: 10px 15px;
}

.input-group .icon {
  margin-right: 10px;
  font-size: 1.2rem;
  color: white;
}

.input-group input {
  color: #ffffff !important;
}

.input-group input::placeholder {
  color: #ffffff;
  opacity: 1;
}

.input-group input {
  border: none;
  background: transparent;
  flex: 1;
  font-size: 1rem;
  outline: none;
  color: white;
}

.options {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: #ffffff;
}

.options a {
  text-decoration: none;
  color: #ffffff;
}

.options a:hover {
  color: #26d7f2;
  text-decoration: underline;
}

.login-form p {
  color: #ffffff; /* Text color */
}

.login-form p a {
  color: #ffffff; /* Link color */
  text-decoration: none;
  font-weight: bold;
}

.login-form p a:hover {
  color: #26d7f2; /* Hover color */
  text-decoration: underline;
}

@keyframes neon-blue-glow {
  0% {
    box-shadow: 0 0 10px #00ffff, 0 0 20px #1e90ff, 0 0 30px #87cefa;
  }
  25% {
    box-shadow: 0 0 10px #1e90ff, 0 0 20px #00bfff, 0 0 30px #add8e6;
  }
  50% {
    box-shadow: 0 0 10px #00bfff, 0 0 20px #4682b4, 0 0 30px #b0e0e6;
  }
  75% {
    box-shadow: 0 0 10px #4682b4, 0 0 20px #87cefa, 0 0 30px #00ffff;
  }
  100% {
    box-shadow: 0 0 10px #00ffff, 0 0 20px #1e90ff, 0 0 30px #87cefa;
  }
}

.btn {
  background: #26d7f2;
  color: rgb(4, 4, 90);
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn:hover {
  animation: neon-blue-glow 2s infinite;
  background: rgb(4, 4, 90);
  color: white;
}

.divider {
  text-align: center;
  margin: 10px 0;
  color: #ffffff;
  font-size: 0.9rem;
  position: relative;
}

.divider span {
  background:  rgb(23, 39, 95);
  padding: 0 10px;
  position: relative;
  z-index: 1;
}

.divider::before {
  content: "";
  height: 1px;
  background: #ffffff;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  z-index: 0;
}

.google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: white;
  border: none;
  padding: 10px;
  border-radius: 10px;
  font-weight: 500;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.google-btn img {
  width: 20px;
  height: 20px;
}

/* --- Admin Tab --- */
#admin:checked ~ .role-tabs label[for="admin"] {
  color: skyblue;
  border-color: rgb(0, 183, 255);
}