* {
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #D8E0EC; /* Light background */
} 

.signup-container {
  display: flex;
  min-height: 100vh;
}

.form-section {
  flex: 1;
  padding: 50px;
  background-color: #f0f9f8;
}

.image-section {
  flex: 1;
  background-image: url("GambarTempat/Signup.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


h2 {
  margin-bottom: 30px;
}

label {
  display: block;
  margin: 10px 0 5px;
  font-weight: bold;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 12px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #white;
}

.validation-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 20px;
}

.validation-list li {
  margin: 5px 0;
  font-size: 14px;
}

.valid {
  color: green;
}

.invalid {
  color: red;
}

.checkbox {
  margin: 15px 0;
}

.terms {
  font-size: 13px;
  margin-bottom: 20px;
}

.terms a {
  text-decoration: underline;
  color: #333;
}

.create-btn {
  color: #FFFFFF;
  background-color: #000000; /* Sea blue */
  border: none;
  padding: 12px 25px;
  font-weight: bold;
  border-radius: 20px;
  cursor: pointer;
}

.login-link {
  font-size: 14px;
  margin-top: 15px;
}
