
    * {
      margin: 0;
      padding: 0;
    }
    body {
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }
    button, input, select {
      font-family: inherit;
    }
    .container {
    
      margin: 20px auto;
    }

    .logo-top .small-scr {
      display: none;
    }

    .head-box {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .form-mainbox {
      width: 100%;
      max-width: 800px;
      margin: 50px auto;
      border: 1px solid #d6d9dc;
      padding: 20px;
      border-radius: 15px;
      background-color: #fff;
    }
   
    .head-text {
      text-align: center;
      margin-top: 10px;
    }
    .head-text h1 {
      font-size: 28px;
      font-weight: 400;
    }

    .head-text-p a {
        color: black;
        text-decoration: none;
    }

    .form-box-main {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-gap: 20px;
      margin: 20px 10px;
    }
    .input-form {
      display: flex;
      align-items: center;
    }
    .input-form input {
      width: 80%;
      padding: 10px;
      border-radius: 5px;
      border: 1px solid #ccc;
    }
    .input-form input:focus {
      outline: none;
      border: 1px solid #0376c9;
    }


    .input-group {
      display: flex; /* Align input and eye icon side by side */
      align-items: center; /* Vertically center the input and icon */
      width: 100%; /* Ensure full width for both input and icon */
    }
    
    .input-group input {
      flex-grow: 1; /* Allow the input to take the remaining space */
      padding: 10px; /* Adjust padding for input */
      border-radius: 5px !important; /* Apply a fully rounded border radius for the input */
      border: 1px solid #ccc; /* Border for the input */
      outline: none;
      margin-right: 4px;
    }
    
    .input-group .eye-icon {
      padding: 10px !important;
      margin-left: 10px; /* Adjust margin to avoid space between input and icon */
      cursor: pointer; /* Pointer cursor for the icon */
      color: #333; /* Icon color */
      font-size: 1.2rem; /* Font size for the eye icon */
      border-radius: 50%; /* Make the icon circular */
    }
    
    /* .input-group i:hover {
      background-color: red !important;
    }
     */
    .btnBox {
      margin-top: 20px;
      text-align: center;
    }
    
    .btnBox button {
      padding: 15px 30px;
      border-radius: 25px;
      border: none;
      background-color: #0376c9;
      color: #fff;
      cursor: pointer;
    }
    
    
    
    

    .btnBox {
      margin: 30px 0;
      text-align: center;
    }
    .btnBox button {
      padding: 15px 30px;
      border-radius: 100px;
      border: none;
      background-color: #0376c9;
      color: #fff;
      cursor: pointer;
    }
    .btnBox button:disabled {
      background-color: #71c1fa9a;
    }

    .eye-toggle {
      all: unset;
    }


    .text-center {
        text-align: center;
        margin-top: 15px;
        margin-bottom: 15px;
    }


    /* message info box */
    .message-box {
      display: flex;
      align-items: center;
      padding: 5px;
      border-left: 4px solid #0376c9;
      background-color: #0376c919;
      margin: 10px 20px;
      border-radius: 5px;
    }
    .message-box .icon {
      margin-right: 10px;
    }
    .message-box .icon img {
      height: 24px;
      width: 24px;
    }
    .message-box .icon-text {
      flex: 1;
    }
    .message-box .icon-text .text-black {
      color: #000;
      margin: 0;
      font-size: 14px;
    }

.progress-box {
  text-align: center;

}

.progress-box img{
  max-width: 100%;
}

@media (max-width: 900px) {
  .logo-top .large-scr {
    display: none;
  }

  .logo-top .small-scr {
    display: inline;
    width: 50px;
  }

}

@media (max-width: 700px) {
  .form-box-main {
    grid-template-columns: 1fr;
  }

  .input-form input {
    width: 100%;

  }
/* 
  .progress-box {
    width: 50%;
  } */

  
  .btnBox {
    width: 100%;
    margin: auto;
  }

  .btnBox button {
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    background-color: #0376c9;
    color: #fff;
    cursor: pointer;
    font-size: 13px;
    
  }
}


/* 
    select addition */

    /* Styling for the select dropdown */
.phrase-select {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 20px auto;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  font-size: 16px;
  color: #333;
  cursor: pointer;
}

.phrase-select:focus {
  outline: none;
  border: 1px solid #0376c9;
  box-shadow: 0 0 5px rgba(3, 118, 201, 0.5);
}
