/* Signup Page Styles */
.signup-section {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url('images/signup-background.jpg'); /* Replace with your background image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.signup-container {
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #fff;
}

.signup-container h2 {
  color: #ffc700;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
}

.form-group input:focus {
  outline: none;
  border-color: #ffc700;
}

button[type="submit"] {
  background-color: #ffc700;
  color: #000;
  border: none;
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.3s ease;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

button[type="submit"]:hover {
  background-color: #e6b800;
  box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.8);
}

.signup-container a {
  color: #ffc700;
  text-decoration: none;
}

.signup-container a:hover {
  text-decoration: underline;
}

/* Profile Image Select */
#profile-image {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  background-color: #222;
  color: #fff;
}

/* Profile Image Preview */
.profile-image-preview {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  margin: 20px auto;
  border: 2px solid #ffc700;
}

.profile-image-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
