/* BASE CSS */
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");

:root {
  --primary-color: #fff;
  --sub-primary-color: #ea5455;
  --white-color: #ffffff;
  --text-color: #383838;
  --header-color: #123985;
  --footer-color: #003C46;
  --border-color: #ced4da;
  --button-color: #ff9800;
  --input-color: #0C4E27;
  --field-color: #123985;
}

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

html {
  font-family: "Roboto", sans-serif;
  font-size: 62.5%;
}

img {
  display: block;
  width: 100%;
}

body {
  background-color: var(--primary-color)!important;
  background-size: cover;
  min-height: 100vh;
  font-size: 1.6rem!important;
  line-height: 1.172!important;
  font-weight: 400!important;
  color: var(--text-color)!important;
}

button {
  border: none;
  border-radius: 3px;
}

button:hover {
  cursor: pointer;
  opacity: 0.85;
}

input {
  outline: none;
}
input:focus{
  border-color: #EA5455;
}
::placeholder {
  color: var(--text-color);
}

:-ms-input-placeholder {
  color: var(--text-color);
}

::-ms-input-placeholder {
  color: var(--text-color);
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

.primary {
  color: var(--primary-color);
}

.card{
  border: unset!important;
}
.form-label{
  color: var(--field-color);
  font-weight: 700;
}
input {
  line-height: 50px !important;
  height: 50px !important;
  border-radius: 100px !important;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1) !important;
  padding-top: 0px !important;
  padding-right: 20px !important;
  padding-bottom: 0px !important;
  padding-left: 20px !important;
  color: var(--field-color) !important;
  font-size: 15px !important;
  font-family: "Daxline" !important;
}
.form-note span {
  color: var(--field-color) !important;
  font-family: "Myriad Pro";
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
.form-note a {
  margin-top: 10px;
  justify-content: flex-start !important;
  position: relative;
  padding-left: 40px;
  font-weight: bold;
  font-family: "Daxline";
  text-decoration: none;
  color: var(--header-color)
}
.form-note a:hover {
  text-decoration: none;
}
.icon-info {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-top: solid 1px #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  border-radius: 100%;
  transition: all .4s;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0
}

d-flex {
  display: flex !important;
}
.icon-info svg {
  height: 10px;
}
.align-items-center {
  align-items: center !important;
}

.btn-submit-form{
  background-image: linear-gradient(to right, #4182EA, #153E8B);
  border: none !important;
  color: #fff !important;
  margin-bottom: 0;
  margin-left: auto;
  padding: 0px 30px !important;


  line-height: 37px!important;
  height: 37px;
  font-weight: bold !important;
  border-radius: 100px !important;
}
.icon-require{
  color: #c02b0a;
  display: inline-block;
  font-size: 13.008px;
  padding-left: .125em;

}
/* CUSTOM STYLE */
.landing-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh
}

.landing-body {
  margin-top: auto;
  margin-bottom: auto;
}
.landing-head {
  background-color: var(--white-color);

  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

input.error {
  border: 1px solid red;
}

.landing-container--head {
  height: 46px;
  width: 100%;
  background-color: var(--header-color);
}

.landing-head__logo {
  height: 64px;
}
.landing-head__logo img{
  width: 200px;
  height: 55px
}





.landing-body__inner {
  max-width: 460px;
  width: 100%;
  background-color: var(--white-color);
  border-radius: 16px;
  padding: 40px 39px;
  border-top: 8px solid var(--primary-color);
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}


.landing-subheading {
  font-size: 1.4rem;
  line-height: 16.41px;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 400;
}

#form {
  width: 100%;
  margin: 0 auto;
}

.form-group {
  width: 100%;
  margin-bottom: 24px;
  position: relative;
}

.form-group:last-child {
  margin-top: 28px;
}

.form-control {
  border: 1px solid var(--border-color);
  border-radius: 5px;
  padding: 8px 10px;
  color: var(--input-color);
  font-size: 1.4rem;
  line-height: 1.5;
  width: 100%;
  height: 46px;
}

.btn-submit {
  background-color: var(--primary-color);
  color: var(--white-color);
  padding: 13px;
  width: 100%;
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.4rem;
}

.error-message {
  color: var(--sub-primary-color);
  padding-left: 16px;
  font-size: 1.4rem;
  line-height: 21px;
  top: 100%;
}

.landing-foot {
  padding: 16px;
  text-align: center;
  color: var(--field-color)
}

/* END: CUSTOM STYLE */

/* DOWNLOAD APP PAGE */
.introduce-box {
  background: rgba(234, 84, 85, 0.12);
  padding: 8px;
  text-align: center;
  color: var(--sub-primary-color);
  border-radius: 3px;
}

.introduce-box__message {
  font-size: 1.4rem;
  line-height: 21px;
  margin-bottom: 8px;
}

.introduce-box__message span:first-child {
  font-weight: 700;
}

.introduce-box__code {
  position: relative;
}

.introduce-code {
  padding: 8px 15px;
  font-weight: 700;
  color: var(--input-color);
  text-align: center;
}

.img-digimi1 {
  width: 275px;

}
.copy-btn {
  padding: 4px 7px;
  color: var(--white-color);
  background-color: var(--header-color);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-size: 1.2rem;
}

.apps-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.apps-list__item {}

.mobile-break {
  display: none;
}

.wrap-mobile {
  display: none;
}

/* Footer Styling */
.landing-foot {
  text-align: center;
  padding: 20px;
  background-color: #f8f9fa; /* Light background */
  color: #666; /* Subtle text color */
  font-size: 14px;
  margin-top: 40px;
}

/* Adjusted Logo Styling */
.bvbank-logo {
  width: 220px;
  height: auto;
  transform: translateX(-50px);
}



.vertical-title {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 2.5rem;
  font-weight: bold;
  align-items: center;
}


/* RESPONSIVE MOBILE */
@media screen and (max-width: 39.75em) {
  body {
    position: relative;
  }

  .bvbank-logo {

    transform: unset !important;
  }
  .justify-content-center, .row-head {
    padding-left: 0;
    padding-right: 0;
  }
  .landing-container {
    padding: 0;
    gap: 0;
  }

  .landing-container--head {
    display: none;
  }

  .landing-head {

    background-color: transparent;
  }



  .landing-subheading {
    max-width: 240px;
    width: 100%;
    margin: 0 auto 24px;
  }

  .landing-head__logo {
    width: 135px;
    height: fit-content;
  }




  .landing-body__inner {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    height: 100%;
    padding: 40px 26.5px 0;
  }


  .wrap-mobile {
    display: unset;
  }

  .form-control {
    height: 46px;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-group:last-child {
    margin-bottom: 28px;
  }

  /* DOWNLOAD PAGE */
  .apps-list {
    align-items: center;
  }

  .apps-list__item {
    width: 180px;
  }

  .mobile-break {
    display: unset;
  }

  .break-desk {
    display: none;
  }

  /* END: DOWNLOAD PAGE */
}

/* END: RESPONSIVE MOBILE */
