* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 18px;

  font-family: "Poppins", sans-serif;

  background:
    radial-gradient(
      circle at top left,
      rgba(0, 119, 255, 0.08),
      transparent 30%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 119, 255, 0.05),
      transparent 30%
    ),
    #020812;

  color: #fff;
}

.payment-wrapper {
  width: 100%;
  max-width: 1040px;

  min-height: 520px;

  display: grid;

  grid-template-columns: 280px 1fr;

  background: linear-gradient(
    145deg,
    rgba(6, 12, 22, 0.96),
    rgba(3, 8, 18, 0.98)
  );

  border: 1px solid rgba(255, 255, 255, 0.08);

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

/* LEFT PANEL */

.left-panel {
  padding: 34px 28px;

  border-right: 1px solid rgba(255, 255, 255, 0.06);

  display: flex;
  flex-direction: column;
}

.logo-section {
  text-align: center;

  margin-bottom: 40px;
}

/* ===== LOGO SECTION ===== */

.logo-section {
  text-align: center;

  margin-bottom: 40px;
}

/* ===== COMPANY LOGO ===== */

.company-logo {
  width: 72px;
  height: 72px;

  margin: 0 auto 12px;

  border-radius: 24px;

  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 12px;
}

/* ===== IMAGE ===== */

/* COMPANY LOGO */

.company-logo{
    width:64px;
    height:64px;

    margin:0 auto 12px;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:0.3s ease;
}

/* LOGO IMAGE */

.company-logo img{
    width:100%;
    height:100%;

    object-fit:contain;
}

/* HOVER EFFECT */

.company-logo:hover{
    transform:scale(1.05);
}

/* ===== COMPANY NAME ===== */

.logo-section h1 {
  font-size: 18px;

  font-weight: 700;

  margin-bottom: 8px;

  color: #fff;
}

.logo-section h1 span {
  color: #0d6efd;
}

/* ===== TAGLINE ===== */

.logo-section p {
  color: #9fb0c8;

  font-size: 13px;
}

/* ===== LINE ===== */

.small-line {
  width: 60px;
  height: 3px;

  background: #0d6efd;

  margin: 18px auto 0;

  border-radius: 20px;
}

/* FEATURE BOX */

.feature-box {
  display: flex;
  align-items: flex-start;

  gap: 12px;

  padding: 16px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;

  font-size: 16px;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.03);

  border: 1px solid rgba(255, 255, 255, 0.06);

  color: #0d6efd;
}

.feature-box h3 {
  font-size: 14px;

  margin-bottom: 4px;
}

.feature-box p {
  color: #9eb0c7;

  font-size: 12px;

  line-height: 1.5;
}

/* RIGHT PANEL */

.right-panel {
  padding: 32px 42px;
}

/* TOP ICON */

.form-top-icon {
  width: 38px;
  height: 38px;

  font-size: 16px;

  margin-bottom: 12px;
  margin: auto;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  border: 1px solid rgba(13, 110, 253, 0.45);

  color: #fff;
}

/* HEADING */

.right-panel h2 {
  text-align: center;

  font-size: 26px;

  font-weight: 700;

  margin-bottom: 8px;
}

.right-panel h2 span {
  color: #0d6efd;
}

.top-description {
  text-align: center;

  color: #9eb0c7;

  font-size: 13px;

  margin-bottom: 14px;
}

.top-line {
  width: 64px;
  height: 3px;

  background: #0d6efd;

  margin: 0 auto 25px;

  border-radius: 20px;
}

/* FORM */

.payment-form {
  width: 100%;
}

/* INPUT GROUP */

.input-group {
  margin-bottom: 14px;
}

.input-group label {
  display: block;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 7px;
}

/* INPUT BOX */

.input-box {
  height: 42px;

  border-radius: 12px;

  padding: 0 14px;

  gap: 12px;

  background: #050d18;

  border: 1px solid rgba(255, 255, 255, 0.08);

  display: flex;
  align-items: center;

  transition: 0.3s ease;
}

.input-box:focus-within {
  border-color: rgba(13, 110, 253, 0.55);

  box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.08);
}

/* ICON */

.input-box i {
  color: #0d6efd;

  font-size: 15px;
}

/* INPUT */

.input-box input,
.input-box select {
  width: 100%;

  background: none;

  border: none;

  outline: none;

  color: #fff;

  font-size: 14px;

  font-family: "Poppins", sans-serif;
}

/* SELECT */

.input-box select {
  appearance: none;
  cursor: pointer;
  font-size: 14px;
  padding-left: 5px;
}

.input-box option {
  background: #08111d;
}

/* PLACEHOLDER */

input::placeholder {
  font-size: 14px;
  color: #7f91ab;
}

/* BUTTON */

.pay-btn {
  width: 100%;

  height: 42px;

  border: none;

  border-radius: 12px;

  margin-top: 10px;

  background: linear-gradient(135deg, #0066ff, #0d6efd);

  color: #fff;

  font-size: 16px;

  font-weight: 600;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  transition: 0.3s ease;
}

.pay-btn:hover {
  transform: translateY(-2px);

  box-shadow: 0 10px 25px rgba(13, 110, 253, 0.28);
}

/* NOTE */

.secure-note {
  margin-top: 15px;

  display: flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  color: #a8b8cc;

  font-size: 13px;
}

.secure-note i {
  color: #0d6efd;
}

/* RESPONSIVE */

@media (max-width: 1000px) {
  .payment-wrapper {
    grid-template-columns: 1fr;
  }

  .left-panel {
    display: none;
  }

  .right-panel {
    padding: 40px 25px;
  }

  .right-panel h2 {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .right-panel h2 {
    font-size: 28px;
  }

  .input-box {
    height: 56px;
  }

  .input-group label {
    font-size: 15px;
  }

  .input-box input,
  .input-box select {
    font-size: 15px;
  }

  .pay-btn {
    height: 58px;
    font-size: 18px;
  }
}


/* FIX INPUT WHITE BACKGROUND */

.input-box input,
.input-box select,
.input-box textarea {
    background: transparent !important;
    color: #fff !important;
    border: none;
    outline: none;
    box-shadow: none !important;
}

/* FIX CHROME AUTOFILL WHITE BACKGROUND */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
select:-webkit-autofill {
    -webkit-text-fill-color: #fff !important;

    transition: background-color 9999s ease-in-out 0s;

    -webkit-box-shadow: 0 0 0px 1000px #020812 inset !important;

    caret-color: #fff;
}

/* REMOVE NUMBER INPUT WHITE BOX */

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    filter: invert(1);
}

/* OPTIONAL - PLACEHOLDER COLOR */

.input-box input::placeholder {
    color: #7f91ab;
}
