/* General page styling */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: url('0.png') no-repeat center center fixed;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Signup panel container */
.signup-panel {
  width: 400px;
  background: rgba(27, 34, 87, 0.9);
  padding: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* Signup box content */
.signup-box {
  width: 100%;
  text-align: center;
}

/* University title text */
.signup-box .title-text {
  font-size: 22px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
}

/* Logo styling */
.signup-box .logo {
  width: 100px;
  margin-bottom: 20px;
}

/* Form heading */
.signup-box h2 {
  margin-bottom: 20px;
  color: white;
}

/* Input fields */
.signup-box input[type="text"],
.signup-box input[type="email"],
.signup-box input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Checkbox label */
.signup-box label {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: white;
  margin-top: 10px;
}

/* Submit button */
.signup-box button {
  width: 100%;
  padding: 10px;
  background: #004080;
  color: #fff;
  border: none;
  border-radius: 4px;
  margin-top: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.signup-box button:hover {
  background: #0059b3;
}

/* Login link */
.signup-box a {
  display: block;
  margin-top: 10px;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.signup-box a:hover {
  color: #cce0ff;
}

/* Responsive Design for Signup */
@media (max-width: 768px) {
  body {
    height: auto;
    min-height: 100vh;
  }

  .signup-panel {
    width: 95vw;
    max-width: 400px;
    padding: 30px 20px;
    margin: 20px;
  }

  .signup-box .title-text {
    font-size: 20px;
  }

  .signup-box input {
    font-size: 16px; /* Prevent zoom */
  }
}

@media (max-width: 480px) {
  .signup-panel {
    padding: 25px 15px;
    margin: 10px;
  }

  .signup-box .title-text {
    font-size: 18px;
  }
}

/* Images responsive */
img {
  max-width: 100%;
  height: auto;
}
