/* Reset and base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: OpenSans, sans-serif;
  background: #fff;
  color: #4e6271;
  line-height: 1.4;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
header {
  background-color: #2b3640;
  padding: 10px 40px;
}

.navbar {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  height: 32px;
}

.logo span {
  color: #91b73e;
  font-weight: 600;
  font-size: 18px;
}

.logo span span {
  color: #fff;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 16px;
}

.nav-links li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-arrow {
  font-size: 10px;
  color: #bbb;
}

.giveaway {
  color: #91b73e;
  font-weight: 600;
}

.login-btn {
  background-color: #91b73e;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.register-btn {
  background-color: #f86000;
  border: none;
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

/* Main form section */
main {
  padding: 30px 0;
  display: flex;
  justify-content: center;
}

.form-section {
  max-width: 500px;
  width: 100%;
}

.tabs {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  justify-content: center;
}

.tabs button {
  border: none;
  background: transparent;
  font-weight: 400;
  font-size: 16px;
  cursor: pointer;
  padding-bottom: 4px;
  color: #888;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.tabs button.active {
  color: #f86000;
  border-bottom: 2px solid #f86000;
}

.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="text"],
.account-form input[type="tel"],
.account-form select {
  width: 100%;
  padding: 12px 15px;
  margin-bottom: 20px;
  border-radius: 20px;
  border: 1px solid #ddd;
  font-size: 14px;
  outline: none;
  transition: 0.3s ease;
}

.account-form input[type="email"]:focus,
.account-form input[type="password"]:focus,
.account-form input[type="text"]:focus,
.account-form input[type="tel"]:focus,
.account-form select:focus {
  border-color: #f86000;
}

.name-fields {
  display: flex;
  gap: 15px;
}

.name-fields input {
  flex: 1;
}

.phone-field {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.country-code {
  max-width: 60px;
  text-align: center;
  background-color: #f4f4f4;
  cursor: not-allowed;
}

.promo-code {
  display: inline-block;
  color: #f86000;
  margin-bottom: 20px;
  font-size: 14px;
  cursor: pointer;
}

.terms {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  margin-bottom: 30px;
}

.terms input[type="checkbox"] {
  width: 18px;
  height: 18px;
}

.terms label a {
  color: #f86000;
}

.next-btn {
  background-color: #f86000;
  border: none;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 18px;
  padding: 15px 40px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.next-btn:hover {
  background-color: #e85c00;
}

/* Footer */
footer {
  background-color: #f7f8fa;
  padding: 30px 40px 20px 40px;
  font-size: 14px;
  color: #666;
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-column {
  min-width: 140px;
  flex: 1;
}

.footer-column h4 {
  color: #444;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #666;
}

.social-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-icons a img {
  width: 25px;
  height: 25px;
}

/* Divider line */
footer hr {
  margin: 30px 0;
  border-color: #ddd;
}

/* Disclaimer paragraph */
.disclaimer {
  font-size: 12px;
  color: #444;
  max-width: 1140px;
  margin: 0 auto 30px auto;
  line-height: 1.5;
}

.disclaimer strong {
  font-weight: 600;
}

/* Footer logos */
.footer-logos {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.footer-logos img {
  height: 40px;
}
