
/* Global body setup */


/* Page content pushed below header */

s
/* Centering ONLY for sign-up */
.signup-page {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* Sign-up box */
.signup-container {
  background: #ffffff;
  color: #000;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.signup-container img.logo {
  height: 96px;
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1.5rem;
}

h1 {
  margin-bottom: 2rem;
  font-size: 1.8rem;
  color: #222;
}

label {
  display: block;
  text-align: left;
  margin-bottom: 0.25rem;
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 0.6rem;
  margin-bottom: 1.2rem;
  border: 1px solid #ccc;
  border-radius: 6px;
}

input[type="submit"] {
  background-color: #24477f;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #16325f;
}

.terms-box {
  margin-bottom: 1.5rem;
  text-align: left;
  font-size: 0.95rem;
  color: #ccc;
}

.terms-box input[type="checkbox"] {
  transform: scale(1.1);
  margin-right: 0.4rem;
}

.terms-box a {
  color: #24477f;
  text-decoration: underline;
}
.signup-footer {
  margin-top: 40px;
  text-align: center;
  font-size: 12px;
  color: #888;
}
