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

/* BODY */
body.page-register {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f9fc;
  color: #222;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* CONTAINER */
.container {
  display: flex;
  max-width: 1000px;
  width: 90%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  overflow: hidden;
}

/* LEFT PANEL */
.left-panel {
  flex: 1;
  background-color: #0a3d91;
  color: #fff;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical markazlash */
  align-items: center;     /* horizontal markazlash */
  text-align: center;      /* matn markazlash */
}

/* logo */
.left-panel .logo {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  margin-bottom: 20px;
}

/* title */
.left-panel h1 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

/* description */
.left-panel p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 40px;
}

/* SERVICES */
.services {
  display: flex;
  flex-direction: column;
  align-items: center;  /* markazga olindi */
  gap: 15px;
  margin-top: 20px;
}

.service-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 16px;
  border-radius: 12px;
  transition: 0.2s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.service-item i {
  color: #ffd700; /* icon rangi */
}

/* RIGHT PANEL */
.right-panel {
  flex: 1;
  padding: 60px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertikal markaz */
  align-items: center;     /* horizontal markaz */
  text-align: center;
  background: #fff;
  color: #0a3d91;
}

.telegram-icon {
  color: #0077ff;
  margin-bottom: 20px;
  font-size: 80px;
}

/* REGISTER BOX */
.register-box {
  max-width: 350px;
  width: 100%;
  text-align: center;
}


h3 {
  font-size: 1.8rem;
  color: #111;
  margin-bottom: 10px;
}

.desc {
  font-size: 1rem;
  color: #555;
  margin-bottom: 30px;
}

.note {
  margin-top: 25px;
  font-size: 0.9rem;
  color: #777;
}

/* REGISTER BOX */
.register-box {
  max-width: 350px;
  width: 100%;
  text-align: center;
}

.register-box h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.register-box .desc {
  color: #666;
  margin-bottom: 25px;
}

.tg-widget iframe {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }
  .left-panel {
    align-items: center;
    text-align: center;
  }
  .left-panel h1 {
    font-size: 1.8rem;
  }
  .left-panel, .right-panel {
    width: 100%;
    padding: 30px 20px;
  }
  .left-panel {
    background: #0a3d91;
  }
  .right-panel {
    background: #fff;
  }
}
