Reset
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #fafafa;
  color: #333;
  line-height: 1.6;
}


/* Register Container */
.register-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.form-box {
  background:#eee;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  max-width: 400px;
  width: 100%;
}

.form-box h2 {
  font-size: 22px;
  margin-bottom: 10px;
  text-align: center;
}

.subtitle {
  font-size: 14px;
  color: #777;
  text-align: center;
  margin-bottom: 25px;
}

/* Form */
.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  margin-bottom: 6px;
  color: #444;
}

input[type="text"],
input[type="email"],
input[type="password"] {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  font-size: 14px;
  transition: 0.3s;
}

input:focus {
  border-color: #a07c5e;
}

/* Checkbox */
.form-group.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.form-group.checkbox label {
  margin: 0;
  font-size: 13px;
  color: #555;
}

/* Button */
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  background:  rgb(170, 130, 154);
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: rgb(171, 121, 151);
}

/* Login Link */
.login-link {
  text-align: center;
  font-size: 14px;
  margin-top: 15px;
  color: #555;
}

.login-link a {
  color: #a07c5e;
  text-decoration: none;
}

.login-link a:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  text-align: center;
  padding: 20px;
  margin-top: 40px;
  font-size: 14px;
  color: #777;
  border-top: 1px solid #eee;
}
