
         /* Container for the sign-up box */
.actbox {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 80vh;
  padding: 2rem;
  background-color: #f5f5f5;
 
}

/* Heading */
.actHeading, .actLoginh1 {
  font-size: 2.5rem;
  color: #003366;
  margin: 0.5rem 0 1rem;
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.2);
}

/* Sign-up Form */
.actForm {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 1.5rem 2rem;
  border: 1px solid rgba(0, 0, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(255, 255, 255, 0.900);
  max-width: 400px;
  width: 100%;
  backdrop-filter: blur(5px);
}

/* Input Fields */
.actForm input {
  width: 100%;
  padding: 0.5rem;
  margin: 0.5rem 0;
  border: 1px solid rgba(0, 0, 255, 0.2);
  border-radius: 5px;
  color: #333;
  transition: border-color 0.3s ease;
}
.actForm input:focus {
  border-color: #003366;
  outline: none;
}

/* Labels */
.actForm label {
  font-size: 16px;
  color: #003366;
  margin-top: 0.5rem;
}

/* Error Messages */
.form-errors {
  color: red;
  font-size: 14px;
  margin-top: 0.2rem;
}

/* Button */
.btn {
  font-size: 14px;
  color: #003366;
  background-color: #e0e0ff;
  border: 1px solid #003366;
  border-radius: 20px;
  padding: 0.5rem 1.5rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}
.btn:hover {
  background-color: #cce0ff;
  color: #001f4d;
  text-decoration: underline;
  transform: translateY(-2px);
}
.btn:active {
  background-color: #b3ccff;
  color: #003366;
  transform: scale(0.98);
}

