:root {
  --primary-color: #ff5c05;
  --secondary-color: #333;
  --text-color: #666;
  --light-bg: #f5f7fa;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

/* ::-webkit-scrollbar {
  width: 0px;
} */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.register-wrapper {
  margin: 80px auto 0;
  width: 1920px;
  height: 871px;
  background-image: url("/img/register/register_bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.register-box {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.register-container {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 550px;
  padding: 40px;
}

@media (max-width: 768px) {
  .register-container {
    padding: 0px;
    box-shadow: none;
  }
}

.register-title {
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
  display: flex;
}

.form-group-item {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.form-label {
  width: 90px;
  display: block;
  font-size: 16px;
  color: #666;
  flex-shrink: 0;
  height: 40px;
  display: flex;
  align-items: center;
}

.required-mark {
  color: #ff6600;
  margin-right: 5px;
}

.form-input {
  width: 100%;
  height: 40px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

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

.form-input.error {
  border-color: #f44336;
}

.error-message {
  color: #f44336;
  font-size: 12px;
  margin-top: 5px;
  display: none;
}

.verification-code {
  flex: 1;
  display: flex;
  gap: 10px;
}

.verification-code .form-input {
  flex: 1;
  width: 100px;
}

.get-code-btn {
  width: 100px;
  height: 40px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.get-code-btn:hover {
  background-color: #e55c00;
}

.get-code-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}

.industry-select {
  height: 40px;
  padding: 0px 15px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
  appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>');
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 20px;
}

.industry-select.error {
  border-color: #f44336;
}

.register-btn {
  width: 100%;
  height: 50px;
  background-color: #ff6600;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.register-btn:hover {
  background-color: #e55c00;
}
