@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

body {
  font-family: var(--primary-font-family);
  font-size: var(--primary-font-size);
  background: #fff;
  color: var(--text-color);
}

.hide_screen main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: calc(100vh - 95px);
}

.hide_screen header {
  padding: 15px;
  border-bottom: 1px solid var(--input-border-color);
}

.inter_panel.credintial_pages {
  background: linear-gradient(180deg, var(--primary-color) 0%, var(--dark) 75%);
  padding: 30px 15px 20px 15px;
}
.inter_panel.credintial_pages::before {
  content: "";
  position: absolute;
  inset: 0;
  /*background-image: url("../img/thankyou_bg.png");*/
  background-size: cover;
  background-position: center;
  opacity: 0.3;   
  z-index: 0;
}

.inter_panel.credintial_pages > * {
  position: relative;
  z-index: 1;
}

.credintial_pages form,
.credintial_pages .thankyou_page {
  background-color: var(--white);
  padding: 24px;
  border-radius: 12px;
}

.credintial_pages form h2,
.credintial_pages .thankyou_page h2 {
  font-size: calc(var(--primary-font-size) + 20px);
  font-family: var(--secondary-font-family);
}
.credintial_pages .thankyou_page form input{
  padding-left: 40px;
  padding-right: 55px;
}
.credintial_pages .thankyou_page form .rupee_icon {
  position: absolute;
  left: 15px;
  top: 35%;
}

.credintial_pages .thankyou_page form .duration {
  position: absolute;
  right: 15px;
  top: 30%;
}

.credintial_pages footer {
  text-align: center;
  color: var(--white);
  padding: 30px 30px 0 30px;
}

.credintial_pages footer a,
.credintial_pages footer p {
  color: var(--white);
}

.credintial_pages footer .d-flex {
  gap: 15px;
}

@media (min-width: 768px) {
  /*.inter_panel {*/
  /*  display: none;*/
  /*}*/

  /*.hide_screen {*/
  /*  display: block;*/
  /*}*/
 .inter_panel {
      width: 441px;
        margin: 0 auto;
        border: 12px solid #000;
        border-radius: 30px;
        background: #fff;
        box-shadow: 0 0 30px rgba(0, 0, 0, 0.4);
        height: 97vh;
        overflow: auto;
        margin-top: 1%;
        scrollbar-width: none;
    -ms-overflow-style: none;
  }
}

@media (max-width: 767px) {
  /*.hide_screen {*/
  /*  display: none;*/
  /*}*/
}