/* ---------- Base ---------- */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;      /* was: center */
  padding: 60px 80px;           /* slightly more top padding to control spacing */
  overflow-x: hidden;
  position: relative;
  
  background:
    linear-gradient(135deg, rgba(12,11,30,0.75) 0%, rgba(0,0,0,0.75) 35%, rgba(15,15,15,0.75) 30%, rgba(0, 0, 0, 0.55) 50%),
    url('image.png') center/cover no-repeat;
  background-attachment: scroll;
}
/* ---------- Floating background orbs ---------- */
.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
}
.visit-link {
    margin-top: 12px;
    
    font-weight: 600;
    color: rgba(254, 252, 252, 0.75);
}
.music-btn {
    position: fixed;
    bottom: 25px;
    left: 25px;
    width: auto;
    margin: 0;
    padding: 10px 18px;
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    cursor: pointer;
    font-size: 13px;
    z-index: 100;
}

.music-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: none;
    box-shadow: none;
}
.visit-link a {
    display: inline-block;
    margin-left: 5px;
    color: #4f46e5;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.25s ease;
}

.visit-link a:hover {
    color: #7c3aed;
    transform: translateX(3px);
}
/* ---------- Left side text ---------- */
.left-content {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin-right: 60px;
  padding-left: 40px;
}

.left-title {
  font-size: 42px;
  font-weight: 700;
  color: #f7f2f2;
  margin: 0 0 18px;
  line-height: 1.2;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.2s;
}

.left-title span {
  background: linear-gradient(135deg, #f2fa03, #515f1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.left-textt {
  font-size: 25px;
  
  font-weight: bold;
  color: rgba(255, 225, 0, 0.75);
  margin: 0;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.5s;
}
.left-text {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  color: rgba(245, 240, 240, 0.75);
  margin: 0;
  opacity: 0;
  transform: translateX(-60px);
  animation: slideInLeft 0.8s ease-out forwards;
  animation-delay: 0.5s;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Hide left content on small screens to avoid crowding */
@media (max-width: 900px) {
  .left-content {
    display: none;
  }
}

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .left-title,
  .left-text {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
.orb-1 {
  width: 380px;
  height: 380px;
  top: -100px;
  left: -100px;
  background: radial-gradient(circle at 30% 30%, #f472b6, transparent 70%);
}

.orb-2 {
  width: 420px;
  height: 420px;
  bottom: -140px;
  right: -120px;
  background: radial-gradient(circle at 70% 70%, #22d3ee, transparent 70%);
}

.orb-3 {
  width: 260px;
  height: 260px;
  top: 40%;
  right: 10%;
  background: radial-gradient(circle, #a78bfa, transparent 70%);
  opacity: 0.35;
}

/* ---------- Glass card ---------- */
.form-container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 420px;
  padding: 40px 36px;

  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.form-header {
  text-align: center;
  margin-bottom: 28px;
}

h2 {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: -0.3px;
}

.subtitle {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* ---------- Fields ---------- */
.field-group {
  margin-bottom: 18px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

input,
select {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

input:focus,
select:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 3px rgba(167, 139, 250, 0.25);
}

select {
  color: #ffffff;
}

select option {
  background: #312e81;
  color: #ffffff;
}

/* ---------- Button ---------- */
button {
  width: 100%;
  margin-top: 10px;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  color: #1e1b4b;
  background: linear-gradient(135deg, #f472b6, #22d3ee);
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s ease;
}

button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(34, 211, 238, 0.35);
}

button:active:not(:disabled) {
  transform: translateY(0);
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ---------- Message ---------- */
#message {
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0;
  font-size: 13px;
  min-height: 16px;
}

/* ---------- Responsive ---------- */
@media (max-width: 480px) {
  .form-container {
    padding: 32px 24px;
    border-radius: 20px;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  button {
    transition: none;
  }
}