.register-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background-color: #f5f5f5;
}

.register-container {
  background: #fff;
  padding: 40px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 550px;
  width: 100%;
  text-align: center;
}

.register-container h2 {
  color: #145a2f;
  margin-bottom: 10px;
  font-size: 28px;
}

.register-container p {
  color: #555;
  margin-bottom: 30px;
  font-size: 15px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-group {
  text-align: left;
}

.input-group label {
  font-weight: 600;
  color: #145a2f;
  display: block;
  margin-bottom: 6px;
}

.input-group input,
.input-group select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 15px;
  transition: 0.3s;
}

.input-group input:focus,
.input-group select:focus {
  border-color: #145a2f;
}

.checkbox-group {
  text-align: left;
  font-size: 14px;
  margin-top: 5px;
  color: #333;
}

.checkbox-group a {
  color: #145a2f;
  font-weight: 600;
  text-decoration: none;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.btn-registar {
  background-color: #145a2f;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-registar:hover {
  background-color: #ffd700;
  color: #000;
}

.login-text {
  margin-top: 15px;
  font-size: 14px;
}

.login-text a {
  color: #145a2f;
  text-decoration: none;
  font-weight: 600;
}

.login-text a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .register-container {
    padding: 25px;
  }
}

/* ===============================
      CreatedBy Isac Pelembe    
   =============================== */