* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  height: 100vh;
  background: linear-gradient(135deg, #030b1f, #061a3a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.container {
  display: flex;
  gap: 40px;
  max-width: 1100px;
  width: 90%;
}

.card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 40px;
  flex: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  position: relative;
}

.left h1 {
  font-size: 28px;
  margin-bottom: 20px;
}

.left p {
  opacity: 0.8;
  margin-bottom: 15px;
  line-height: 1.6;
}

.logo {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2d8cff, #1e5eff);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  font-weight: bold;
  margin-bottom: 25px;
}

.buttons {
  margin-top: 20px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.primary {
  background: linear-gradient(135deg, #2d8cff, #1e5eff);
  color: white;
}

.primary:hover {
  transform: translateY(-2px);
}

.secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.secondary:hover {
  background: rgba(255,255,255,0.2);
}

.right {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(45,140,255,0.2);
}

.big {
  width: 120px;
  height: 120px;
  top: 60px;
  right: 80px;
}

.small {
  width: 60px;
  height: 60px;
  top: 120px;
  right: 200px;
}

.oval {
  width: 160px;
  height: 60px;
  background: rgba(45,140,255,0.15);
  border-radius: 50%;
  position: absolute;
  bottom: 80px;
}