.card {
    width: 80%;
    border-radius: 6px;
    padding: 4rem;
    place-self: center;
    background-color: #fff;
    font-family: sans-serif;
    box-shadow: 6px 6px 20px rgba(0,0,0,0.3);
  }
  .title {
    padding-bottom: 0.5rem;
    font-size: 1.8rem;
  }
  .sub_title {
    font-size: 1.5rem;
  }
  .line {
    width: 20%;
    height: 5px;
    background-color: #e48e5e;
    border: transparent;
    margin-bottom: 2rem;
  }
  .sub_line{
      width: 15%;
    height: 5px;
    background-color: #43c6ac;
    border: transparent;
  }
  .steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .step {
    width: 100%;
  }
  .step__title {
    position: relative;
    background-color: #43c6ac;
    height: 40px;
    width: 90%;
    display: grid;
    place-items: center;
    color: #fff;
    font-family: sans-serif;
  }
  .step__title:before,
  .step__title:after {
    content: "";
    position: absolute;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
  }
  .step__title:before {
    border-left: 20px solid #fff;
    left: 0;
  }
  .step__title:after {
    border-left: 20px solid #43c6ac;
    right: -20px;
  }
  .step__info {
    padding: 1rem 0.5rem;
  }
  
  .form-title{
      padding:10px 40px 0px;
  }
  form{        
      width: 700px;   /* Set form width to 200px */
       margin: 0 auto;             /* Ensure it's centered horizontally */
      text-align: left;            /* Ensure the form content is aligned to the left */
      padding: 20px;               /*Optional: Add some padding inside the form
      border: 1px solid #ccc;      /* Optional: Add a border around the form */
      border-radius: 5px;          /* Optional: Add some border radius */
      box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: Add a subtle shadow */
  }
  /* General flexbox layout */
  .beside {
      display: flex;
      justify-content: space-between;
  }
  
  /* Styling for each input field container */
  .input-container {
      width: 45%;  /* Same width as the input fields */
  }
  
  /* Input styling */
  .beside input {
      border: none;
      border-bottom: 1px solid black;
      outline: none;
      width: 100%;    /* Full width inside the container */
      margin: 8px 0;
      padding: 10px 0;
  }
  
  .beside select {
      border: none;
      border-bottom: 1px solid black;
      outline: none;
      width: 100%;    /* Full width inside the container */
      margin: 8px 0;
      padding: 10px 0;
  }
  
  /* Error message styling */
  .invalid-feedback {
      color: red;         /* Style the error message */
      font-size: 0.9em;   /* Slightly smaller text for the error */
      margin-top: 5px;    /* Add space between the input and error */
      display: block;     /* Ensure error messages take up full width */
  }
  input[type=number]{
      border: none;
      border-bottom: 1px solid black;
      outline:none;
      margin: 8px 0;
      padding:5px 0;
  }
  input :hover {
      background-color: red;
  }
  .nation select{
      border: none;
      border-bottom: 1px solid black;
      outline:none;
      margin: 5px 0;
      padding:15px 0;
      width:100%;
  }
  .nation input{
      border: none;
      border-bottom: 1px solid black;
      outline:none;
      margin: 5px 0;
      padding:15px 0;
      width:100%;
  }
  .nation textarea {
      border: none;
      border-bottom: 1px solid black;
      outline:none;
      margin: 5px 0;
      padding:15px 0;
      width:100%;
      background-color: white;
      color: black;
  }
  .nation textarea::placeholder {
      color: #888;  /* Ensures the placeholder is visible */
  }
  .beside{
      display:flex;  
      justify-content: space-between;
  }
  
  button{
      color:#ffffff;
      background-color: #4caf50;
      width:100%;
      margin-top:15px;
      cursor: pointer;
      border:none;
      border-radius:2%;
      outline:none;
      text-align:center;
      font-size:10px;
      text-decoration:none;
      -webkit-transition-duration:0.4s;
      transition-duration:0.4s;
  }
  button:hover{
      background-color:#333333;
  }

  /**********PAGE LOAD*********/
  #overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
    z-index: 9998; /* Lower z-index than the loader */
}

/* Loader styling */
#loader {
display: none;
position: fixed;
left: 50%;
top: 50%;
transform: translate(-50%, -50%);
z-index: 9999; /* Higher z-index than the overlay */
}
#progressbar li {
list-style-type: none;
font-size: 15px;
width: 25%;
float: left;
position: relative;
font-weight: 400;
}
/**********END PAGE LOAD*********/