* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  min-height: 100vh;
  background: linear-gradient(135deg, #141e30, #243b55);
  display: flex;
  justify-content: center;
  align-items: center;
}

/* MAIN CARD */
.signup-wrapper {
  width: 1000px;
  max-width: 95%;
  background: #fff;
  display: flex;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.25);
}

/* BRAND SECTION */
.brand-section {
  width: 45%;
  background: linear-gradient(160deg, #141e30, #243b55);
  color: #fff;
  padding: 55px 40px;
}

.logo-box {
    border: 3px solid #2AA9FF;
  width: 75px;
  background: #fff;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}

.logo-box h2{
   
    margin-left: 0.6rem;
    font-size: 30px;
}

.Repo{
    color: #2AA9FF;
}

.logo-box img {
     border-radius: 4px;
  width: 100%;
}

.brand-section h1 {
  color: #F5C542;
  font-size: 32px;
  font-weight: 600;
}

.brand-section p {
  color: #00d0ffea;
  margin-top: 12px;
  opacity: 0.9;
}

.brand-points {
  margin-top: 30px;
  list-style: none;
}

.brand-points li {
  margin-bottom: 12px;
  font-size: 14px;
}

.brand-points i {
  margin-right: 8px;
  color: #00ffcc;
}

/* FORM SECTION */
.form-section {
  width: 55%;
  padding: 50px 45px;
}

.form-section h2 {
  font-size: 26px;
  margin-bottom: 28px;
  color: #222;
}

/* INPUT */
.input-group {
  position: relative;
  margin-bottom: 20px;
}

.input-group .i {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(-50%);
  color: #666;
}

.password-group {
  position: relative;
}

.toggle-password {
  position: absolute;
  top: 43%;
  right: 15px;
  cursor: pointer;
  color: #777;
  font-size: 14px;
}

.toggle-password:hover {
  color: #000;
}


.input-group input {
  width: 100%;
  padding: 14px 14px 14px 42px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
}

.input-group input:focus {
  border-color: #243b55;
}

/* TERMS */
.terms {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin: 18px 0;
}

.terms a {
  color: #243b55;
  text-decoration: none;
}

/* BUTTON */
.signup-btn {
  width: 100%;
  padding: 14px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.signup-btn:hover {
  opacity: 0.9;
}

/* LINKS */
.extra-links {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
}

.extra-links a {
  color: maroon;
  text-decoration: none;
  font-weight: 500;
}

/* 📱 MOBILE (≤451px) */
@media (max-width: 451px) {
  .signup-wrapper {
    margin: 1rem 0.8rem;
    flex-direction: column;
  }

  .brand-section {
    width: 100%;
    text-align: center;
    padding: 35px 25px;
  }

  .logo-box {
    margin: 0 0 1.25rem 2rem;
  }

  .form-section {
    width: 100%;
    padding: 35px 25px;
  }



}




.dept-group {
  position: relative;
  width: 100%;
  margin-bottom: 16px;
}

.dept-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #666;
  font-size: 16px;
  pointer-events: none;
}

.dept-group select {
  width: 100%;
  height: 46px;
  padding: 10px 12px 10px 42px;
  font-size: 15px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background-color: #fff;
  outline: none;
  appearance: none;
  cursor: pointer;
}

/* Focus effect */
.dept-group select:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 2px rgba(13,110,253,0.15);
}
@media (max-width: 451px) {

  .dept-group {
    margin-bottom: 14px;
  }

  .dept-group i {
    left: 12px;
    font-size: 14px;
  }

  .dept-group select {
    height: 42px;
    font-size: 14px;
    padding: 9px 10px 9px 38px;
    border-radius: 5px;
  }
}
