/* Global Typography - Montserrat Font */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@200;300;400;500;600;700&display=swap');

:root {
  --gold: #E3A000;
  --bg: #ffffff;
  --paper: #ffffff;
  --muted: #666666;
  --border: #e0e0e0;
  --text: #000000;
  --accent: #E3A000;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  min-height: 100vh;
  background: #ffffff;
  color: var(--text);
  padding-top: 0;
}

.register-wrapper {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Page Title */
.register-page-title {
  text-align: center;
  padding: 60px 40px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.register-logo {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.qubix-logo-header {
  margin-top: -150px;
  height: 220px;
  width: 220px;
  margin-bottom: -70px;
  padding: 0;
}

.register-page-title h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.2;
}

.register-page-title p {
  font-size: 1.1rem;
  color: var(--muted);
  font-weight: 400;
}

/* Main Content Layout */
.register-content {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 50px;
  padding: 80px 40px;
  max-width: 1400px;
  margin: 0 auto;
}

.register-main {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Why Register Section */
.why-register-section {
  background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-left: 4px solid var(--gold);
}

.why-register-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
  padding-left: 8px;
  border-left: 2px solid rgba(227, 160, 0, 0.2);
  padding-left: 16px;
}

.benefits-list li svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Registration Form */
.register-form-container {
  background: #ffffff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

.register-form-container h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 30px;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #ffffff;
  transition: all 0.3s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(227, 160, 0, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.register-btn {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
  box-shadow: 0 4px 15px rgba(227, 160, 0, 0.3);
}

.register-btn:hover {
  background: #d49400;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(227, 160, 0, 0.4);
}

.register-btn:active {
  transform: translateY(0);
}

/* Sidebar */
.register-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-section,
.contact-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.location-section h3,
.contact-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-section p,
.contact-section p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 8px;
}

.contact-section a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-section a:hover {
  color: #d49400;
  text-decoration: underline;
}

/* Trust Badges */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 16px;
  border-radius: 8px;
  background: rgba(227, 160, 0, 0.05);
  transition: all 0.3s ease;
}

.trust-badge:hover {
  background: rgba(227, 160, 0, 0.1);
  transform: translateY(-2px);
}

.trust-badge svg {
  color: var(--gold);
  margin-bottom: 4px;
}

.trust-badge span {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

/* Back Link */
.back-link {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-link a:hover {
  color: var(--gold);
  transform: translateX(-4px);
}

.back-link a svg {
  width: 16px;
  height: 16px;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .register-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 30px;
  }

  .register-main {
    order: 1;
  }

  .register-sidebar {
    order: 2;
  }

  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .register-page-title {
    padding: 40px 20px 30px;
  }

  .qubix-logo-header {
    height: 150px;
    width: 150px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .register-content {
    padding: 40px 20px;
  }

  .why-register-section,
  .register-form-container,
  .location-section,
  .contact-section,
  .trust-badges {
    padding: 25px;
  }

  .trust-badges {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .register-page-title {
    padding: 30px 15px 20px;
  }

  .qubix-logo-header {
    height: 120px;
    width: 120px;
    margin-top: 0;
    margin-bottom: 0;
  }

  .register-page-title h1 {
    font-size: 1.7rem;
  }

  .register-page-title p {
    font-size: 0.95rem;
  }

  .register-content {
    padding: 30px 15px;
  }

  .why-register-section,
  .register-form-container,
  .location-section,
  .contact-section {
    padding: 20px;
  }

  .trust-badges {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .form-group input,
  .form-group select {
    padding: 12px 14px;
    font-size: 0.95rem;
  }

  .register-btn {
    padding: 14px;
    font-size: 1rem;
  }
}
