@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@400;500&display=swap');

:root {
  --bronze: #bd751e;
  --black: #050505;
  --dark-grey: #0f0f0f;
  --text-dim: #666;
  --text-light: #e5e5e5;
  --font-serif: 'Outfit', sans-serif;
  --bg-deep: #0a0f1a;
  --primary-accent: #bd751e;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --glass-border: rgba(255, 255, 255, 0.1);
}

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

body {
  background: radial-gradient(1200px circle at 12% -10%, rgba(224, 53, 67, .04), transparent 58%),
              radial-gradient(900px circle at 88% -12%, rgba(0, 143, 135, .05), transparent 56%),
              var(--bg-deep);
  background-color: var(--bg-deep);
  color: var(--text-light);
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  height: auto;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(10, 15, 26, 0.7);
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  flex: 1;
}

.nav-links:last-child {
  justify-content: flex-end;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--primary-accent);
}

.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(189, 117, 30, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 999;
  transition: width 0.3s, height 0.3s;
}

.registration-wrapper {
  display: flex;
  min-height: 100vh;
  padding-top: 80px;
  padding-bottom: 48px;
}

.brand-side {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.brand-content {
  text-align: center;
  /* max-width: 420px; */
  padding: 2%;
}

.registration-page .hero-logo {
  width: 80%;
  max-width: 50%;
  height: auto;
  margin-bottom: 1.5rem;
}

.brand-logo {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  background: linear-gradient(135deg, #fff 0%, var(--text-muted) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  overflow-wrap: anywhere;
  white-space: nowrap;
}

.form-side {
  flex: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(1200px circle at 12% -10%, rgba(224, 53, 67, .04), transparent 58%),
              radial-gradient(900px circle at 88% -12%, rgba(0, 143, 135, .05), transparent 56%),
              var(--bg-deep);
  background-color: var(--bg-deep);
  
  
}

.form-container {
  width: 100%;
  max-width: 80%;
  padding: 2rem;
}

h1 {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.form-header p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.input-wrapper {
  position: relative;
  margin-bottom: 2.5rem;
}

.input-wrapper input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
}

.input-wrapper label {
  position: absolute;
  left: 0;
  top: 12px;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-dim);
  pointer-events: none;
  transition: 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.input-wrapper input:focus~label,
.input-wrapper input:not(:placeholder-shown)~label {
  transform: translateY(-28px);
  color: var(--bronze);
}

.focus-line {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--bronze);
  transition: 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.input-wrapper input:focus~.focus-line {
  width: 100%;
}

.cta-button {
  width: 100%;
  padding: 20px;
  background: transparent;
  border: 1px solid var(--bronze);
  color: var(--bronze);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  margin-top: 1rem;
}

.cta-button:hover {
  background: var(--bronze);
  color: #000;
  box-shadow: 0 10px 30px rgba(189, 117, 30, 0.2);
}

.btn-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    min-height: auto;
    padding: 16px 0;
    gap: 12px;
  }

  .nav-links {
    justify-content: center;
    gap: 16px;
  }

  .nav-links:last-child {
    justify-content: center;
  }

  .registration-wrapper {
    flex-direction: column;
    padding-top: 120px;
  }

  .brand-side {
    min-height: 220px;
    border-bottom: 1px solid rgba(189, 117, 30, 0.1);
  }

  .brand-logo {
    font-size: 2.2rem;
  }

  .form-side {
    flex: none;
  }
}
