: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);
}

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

.btn-experience {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 24px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
}

.btn-experience:hover {
  opacity: 0.7;
}

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

.register-container {
  background-color: #fff;
  border-radius: 10px;
  /* box-shadow: 0 0 20px rgba(0, 0, 0, 0.1); */
  width: 480px;
  /* height: 424px; */
  box-sizing: border-box;
  padding: 40px;
  margin: 0 auto;
}

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

.register-content {
  text-align: center;
}

.result-a {
  color: #ff6600;
}

.register-btns {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 30px;
  flex-wrap: wrap;
}

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

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