* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  background: #0a0a0a;
  color: white;
  min-height: 100vh;
  overflow-x: hidden;
}

.bg {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(220, 38, 38, 0.22), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(220, 38, 38, 0.14), transparent 22%),
    radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.05), transparent 20%);
  z-index: 0;
}

.container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  min-height: 100vh;
  gap: 40px;
  padding: 40px;
}

.left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.logo{
  width: auto;
  height: auto;
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  padding: 0;
  display: flex;
  align-items: center;
}

.logo img{
  height: 140px !important;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}


.brand h2 {
  font-size: 22px;
}

.brand p {
  color: #b3b3b3;
  margin-top: 4px;
}

.badge {
  display: inline-block;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.35);
  color: #fecaca;
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
  width: fit-content;
}

.left h1 {
  font-size: 54px;
  line-height: 1.08;
  max-width: 760px;
  margin-bottom: 18px;
}

.desc {
  color: #c7c7c7;
  max-width: 620px;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 36px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 22px;
  border-radius: 22px;
  backdrop-filter: blur(8px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.card p {
  color: #b3b3b3;
  line-height: 1.5;
}

.right {
  display: flex;
  justify-content: center;
  align-items: center;
}

.panel {
  width: 100%;
  max-width: 440px;
  background: rgba(20,20,20,0.95);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.panel h2 {
  font-size: 30px;
  margin-bottom: 8px;
}

.sub {
  color: #9ca3af;
  margin-bottom: 24px;
}

.tabs {
  display: flex;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  padding: 6px;
  border-radius: 18px;
  margin-bottom: 22px;
}

.tab {
  flex: 1;
  border: none;
  background: transparent;
  color: white;
  padding: 12px;
  border-radius: 14px;
  cursor: pointer;
}

.tab.active {
  background: #dc2626;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

label {
  display: block;
  margin: 14px 0 8px;
  color: #e5e7eb;
}

input {
  width: 100%;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
  color: white;
  padding: 0 14px;
}

input::placeholder {
  color: #777;
}

.primary,
.secondary {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  margin-top: 22px;
  font-size: 16px;
  cursor: pointer;
}

.primary {
  background: #dc2626;
  color: white;
}

.secondary {
  background: white;
  color: #111;
}

@media (max-width: 1100px) {
  .container {
    grid-template-columns: 1fr;
  }

  .left h1 {
    font-size: 38px;
  }

  .cards {
    grid-template-columns: 1fr;
  }
}
.primary,
.secondary {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 16px;
  margin-top: 14px;
  font-size: 16px;
  cursor: pointer;
}

.primary {
  background: #d80d0d;
  color: rgb(255, 255, 255);
}

.secondary {
  background: rgba(255,255,255,0.08);
  color: white;
  border: 1px solid rgba(255,255,255,0.1);
}

