@font-face {
  font-family: 'OwnersXWideMedium';
  src: url('https://simplileapstaging.com/signupform-newdesign/fonts/owners-xwide-medium.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

body, p, span, li, ul, label, .fieldlabels, button {
  font-family: "owners-wide", sans-serif;
}

h1, h2 {
  font-family: "owners-xwide", sans-serif;
}

* {
  margin: 0;
  padding: 0;
}
html {
  height: 100%;
}
p {
  color: grey;
}

#heading {
  text-transform: uppercase;
  color: #000000;
  font-weight: 500;
  font-size: 3em;
  text-align: left;
  display: flex;
  align-items: center;
  font-family: "OwnersXWideMedium", sans-serif;
  letter-spacing: 2px;
  line-height: 80px;
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

#msform fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.form-card {
  text-align: left;
}
.default.text {
  font-family: 'owners-wide';
  font-weight: 500;
  color: #787878 !important;
}


#msform fieldset:not(:first-of-type) {
  display: none;
}

#msform input,
#msform select,
#msform textarea {
  padding: 10px 15px 10px 15px;
  border: 1px solid #DEDEDE;
  border-radius: 30px;
  margin-top: 2px;
  width: 100%;
  box-sizing: border-box;
  /*font-family: montserrat;*/
  color: #787878;
  /*background-color: #eceff1;*/
  font-size: 16px;
  letter-spacing: 1px;
  /*font-family: 'owners-wide';*/
    font-size: 14px;
}
.margin-top{
  margin-top: 25px;
}

#msform select {
  padding:  8px 14px 8px 14px !important;
  font-size: 14px !important;
}

#msform input:focus,
#msform select:focus,
#msform textarea:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid #000000;
  outline-width: 0;
}

.label.ui.selection.fluid.dropdown.form-select.multiple, 
.label.ui.selection.fluid.dropdown.form-select {
  padding: 10px 15px 10px 15px !important;
  border: 1px solid #DEDEDE !important;
  border-radius: 30px !important;
  margin-bottom: 25px;
  margin-top: 2px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  color: #2c3e50 !important;
  /*background-color: #eceff1 !important;*/
  letter-spacing: 1px !important;
  /*font-family: 'owners-wide';*/
    font-size: 14px;
  
}
.label.ui.selection.fluid.dropdown.form-select {
  padding: 11px 15px 11px 15px !important;
}


#msform .action-button {
    width: 190px;
    background: #FFD500 !important;
    font-weight: 500;
    color: #000000;
    border: 0 none;
    border-radius: 30px;
    cursor: pointer;
    padding: 7px 0px;
    margin: 60px 0px 10px 5px;
    float: right;
    text-transform: capitalize;
    font-size: 16px !important;
}

/*#msform .action-button:hover,*/
/*#msform .action-button:focus {*/
/*  color: #000;*/
/*  box-shadow: inset 0 -3em 3em rgb(255 255 255), 0 0 0 2px white,*/
/*    0.3em 0.3em 1em rgb(255 255 255 / 93%);*/
/*}*/

#msform .action-button-previous {
  width: 120px;
  background: #000000;
  font-weight: 400;
  color: white;
  border: 0 none;
  border-radius: 5px;
  cursor: pointer;
  padding: 1px 10px;
  margin: 10px 5px 10px 5px;
  float: right;
}

#msform .action-button-previous:hover,
#msform .action-button-previous:focus {
  color: #000;
  box-shadow: inset 0 -3em 3em rgb(255 255 255), 0 0 0 2px white,
    0.3em 0.3em 1em rgb(255 255 255 / 93%);
}

.card {
  z-index: 0;
  border: none;
  position: relative;
  padding: 70px !important;
  border-radius: 30px !important;
  box-shadow: 0 5px 12px 0 rgb(0 11 66 / 2%), 0 0 5px rgba(0, 0, 0, .06) !important;
}

.fs-title {
  font-size: 20px;
  color: #FFD500 !important;
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
  font-family: "owners-wide", sans-serif;
}


.fieldlabels {
  color: black;
  text-align: left;
  font-size: 14px;
}

input::placeholder {
  font-size: 13px;
  color: #787878;
}

.error-message {
  font-size: 12px;
  margin-top: 4px;
}

input:checked + .slider {
  background-color: #000000;
}

input:checked + .slider::before {
  transform: translateX(30px);
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield; 
}


#toast-container {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 9999;
}

.toast {
  background: #4CAF50 !important;
  color: #000;
  padding: 10px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  opacity: 0;
  animation: fadeInOut 3s ease-in-out forwards;
}

.success-toast {
  background: #4CAF50 !important; /* Green for success */
}

.error-toast {
  background: red !important; /* Green for success */
}

@keyframes fadeInOut {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.input-error {
  border: 1px solid red;
}

.error-message {
  font-size: 12px;
  color: red;
  margin-top: 5px;
}

.container-fluid {
    padding: 60px;
    padding-left: 120px !important;
    padding-right: 120px !important;
}

.kyc-logo{
    width: 140px;
}

.card p{
    text-align: left;
    font-size: 1.3em;
    color: black;
    font-weight: normal;
    margin: 0 0 1rem 0 !important;
}

h1 .text-yellow {
  font-family: "OwnersXWideMedium", sans-serif;
}

.text-yellow {
  color: #ffd500 !important;
  margin-left: 5px;
  /* font-family: "OwnersXWideMedium", sans-serif; */
}

.heading-arrow {
    width: 55px;
    height: 55px;
    object-fit: contain;
    margin-right: 10px;
}

@media (max-width: 768px) {
  .container-fluid {
    padding: 50px;
    padding-left: 50px !important;
    padding-right: 50px !important;
  }

  .card {
    width: 100%;
  }

  .card-main {
    padding: 40px;
  }

  .steps-block {
    width: fit-content;
    margin-left: auto;
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 0px 0px 0px 30px;
    border-right: 0;
    border-top: 0;
    margin-top: -20px;
  }
}

/* Mobile Responsiveness */
@media (max-width: 425px) {
  .container-fluid {
    padding: 30px;
    padding-left: 30px !important;
    padding-right: 30px !important;
  }

  .card-main {
    padding: 20px;
  }

.card {
    padding: 20px !important;
}
  #heading {
    text-transform: uppercase;
    color: #000000;
    font-weight: 600;
    font-size: 30px;
    text-align: left;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .steps-block {
    width: fit-content;
    margin-left: auto;
    padding: 10px;
    border: 1px solid #dfdfdf;
    border-radius: 0px 0px 0px 30px;
    border-right: 0;
    border-top: 0;
    margin-top: -20px;
  }
  

  #nested .action-button-previous {
    width: 100%;
    background: transparent;
    font-weight: 400;
    color: black;
    border: 1px solid #ffd500;
    border-radius: 30px;
    cursor: pointer;
    padding: 1px 10px;
    margin: 10px 0px;
    float: left;
  }
  .next-prev {
    display: flex;
    flex-direction: column;
  }
  /* #progressbar p {
    list-style-type: none;
    font-size: 13px;
    width: 20%;
    float: left;
    position: relative;
    font-weight: 300 !important;
    min-width: unset;
    flex-shrink: 0;
    color: #969696;
  } */
  
  #msform .action-button {
    width: 100%;}
}

