/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Mono&family=Poppins:wght@400;500;600&display=swap');

/* Reset basic styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
}

:root {
  --primary-green: #7cdb31;
  --dark-color: #010000;
  --white-color: #ffffff;
  --cyan-color: #008A82;
  --inner-width: min(100%, 1280px);
}

/* header */
header {
  z-index: 99;
  width: 100%;
  height: max-content;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid var(--dark-color);
}

.header_container {
  width: 100%;
  height: 118px;
  display: flex;
  background-color: #100c5d;
  background-repeat: no-repeat;
  background-size: cover;
  flex-shrink: 0;
}

.brand_logo {
  all: unset;
  padding-left: 20px;
  flex: 1;
  background-color: var(--white-color);
  clip-path: polygon(0% 0%, 75% 0%, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  text-decoration: none;
  width: 100%;
  min-width: 280px;
}

.brand_logo-icon {
  width: 80%;
  min-width: 230px;
  height: auto;
}

.logo_text-container {
  display: flex;
  flex-direction: column;
}

.header_hero-title {
  display: flex;
  flex: 2;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.header_hero-title h1 {
  color: #fff;
  text-align: center;
  font-size: 42px;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  line-height: 1.4em;
}

.hr_line {
  margin-inline: auto;
  background-color: #37ACEC;
  height: 2px;
  width: 80%;
}

sup {
  font-size: 10px;
}

.header_hero-title p {
  color: #fff;
  text-align: center;
  font-size: 16px;
}

.img-logos {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.img-logos .alt-logos {
  width: auto;
  height: 100px;
  flex-shrink: 0;
}

.thank-message {
  padding-top: 10%;
}

/* Buttons */
.btn_fill {
  padding: 12px 24px;
  width: 200px;
  background: #37ACEC;
  border-radius: 2px;
  font-family: 'Poppins', sans-serif;
  border: none;
  font-weight: 500;
  font-size: 18px;
  color: #fff;
  cursor: pointer;
}

.btn_fill:hover {
  background: linear-gradient(0deg, #02779A, #02779A),
              linear-gradient(0deg, #02779A, #02779A);
}

.btn_outlined {
  padding: 11px 24px;
  width: 200px;
  background: #fff;
  border: 2px solid #37ACEC;
  font-family: 'Poppins', sans-serif;
  border-radius: 2px;
  font-weight: 500;
  font-size: 18px;
  color: #000000e8;
  cursor: pointer;
}

.btn_outlined:hover {
  background: #37ACEC;
  color: #fff;
}

.btn-algin {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 17%;
  gap: 10px;
}

/* Amount styling: Rupee supported */
#amt1, #amt {
  font-family: 'Noto Sans Mono', 'Poppins', sans-serif !important;
  font-size: 24px;
  font-weight: 500;
  color: #000;
}
label {
    font-family: 'Poppins', 'Noto Sans', sans-serif;
}
/* Responsive */
@media only screen and (max-width: 600px) {
  .btn-block {
    width: 100%;
  }
  .btn-algin {
    flex-direction: column;
    gap: 10px;
  }
}

/* Tablet */
@media (min-width: 601px) and (max-width: 997px) {
  .btn-block {
    width: 10%;
  }
  .btn-algin {
    flex-direction: column;
    gap: 10px;
  }
}

/* Mobile tweaks */
@media (max-width: 600px) {
  .header_container {
    flex-wrap: nowrap;
    align-items: center;
    gap: 8px;
  }

  .img-logos {
    display: flex;
    flex: 0 0 60px;
    justify-content: flex-start;
  }

  .img-logos .alt-logos {
    width: auto;
    height: 60px;
  }

  .header_hero-title {
    position: relative;
    left: 0;
    flex: 1 1 auto;
    text-align: left;
  }

  .header_hero-title h2 {
    font-size: 14px !important;
    line-height: 1.3;
  }

  .header_hero-title p {
    font-size: 10px;
  }
}
form, form * {
    font-family: 'Poppins', 'Noto Sans', sans-serif !important;
}