body {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 40px;
  padding-bottom: 40px;
  color: #fff;
  font-family: 'Montserrat', sans-serif; }

#Signup-Form {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); }

#Signup-Form h1 {
  margin-bottom: 20px;
  font-size: 24px; }

#Signup-Form label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px; }

#Signup-Form .form-control {
  width: 100%;
  height: 40px;
  padding: 10px;
  margin-bottom: 20px;
  font-size: 16px;
  border: 1px solid #ced4da;
  border-radius: 4px; }

#Signup-Form .form-control:focus {
  z-index: 2; }

#Signup-Form .username-email,
#Signup-Form .passwords {
  display: flex;
  justify-content: space-between; }

#Signup-Form .username-email input[type="text"],
#Signup-Form .username-email input[type="email"],
#Signup-Form .passwords input[type="password"] {
  width: 48%; }

#Signup-Form .passwords input[type="password"] {
  margin-left: 4%; }

#Signup-Form input[type="submit"] {
  display: block;
  width: 100%;
  height: 40px;
  margin-top: 10px;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer; }

#Signup-Form input[type="submit"]:hover {
  background-color: #0056b3; }
