/* Import Google font - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap");
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    /* General styles */
  }
  .logo img {
    width: 150px; /* Set the width of the logo image */
    height: auto; /* Maintain aspect ratio */
    margin-right: 10px; /* Add margin to the right of the logo */
  }
  /* Header styles */
  header {
    background-color: #4070f4; /* Dark background color */
    color: #f1f1f1; /* Light text color for contrast */
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: fixed; /* Fix the header at the top */
    top: 0; /* Position at the top of the viewport */
    left: 0; /* Position at the left edge */
    width: 100%; /* Occupy full width of the viewport */
    z-index: 1000;
  }

  /* Logo styles */

  /* Dropdown breadcrumb button styles */
  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff; /* Light background color */
    min-width: 100px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); /* Shadow for dropdown */
    z-index: 1;
    border-radius: 5px; /* Rounded corners */
    left: -3.3em;
  }

  .dropdown-content a {
    color: #333; /* Darker text color */
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    transition: background-color 0.3s; /* Smooth transition */
  }

  .dropdown-content a:hover {
    background-color: #f1f1f1 ; /* Lighter background on hover */
  }

  .dropdown:hover .dropdown-content {
    display: block;
  }

  /* Dropdown button styles */
  .dropbtn {
    background: none; /* Transparent background */
    border: none;
    cursor: pointer; /* Cursor pointer on hover */
    color: inherit;
    font-family: inherit;
    font-size: 18px;
    transition: text-decoration 0.3s; /* Smooth underline transition */
  }

  .dropbtn:hover{
      background-color: none;
  }

  /* Responsive styles */
  @media screen and (max-width: 600px) {
    .logo {
      font-size: 22px; /* Smaller font size for smaller screens */
    }
  }

  :where(.container, form, .input-field, .head1) {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .container {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Add a subtle box-shadow */
    max-width: 800px; /* Set a maximum width */
    min-width: 200px;
    margin: 80px auto; /* Center the container horizontally */
  }
  .container > .head1 {
    height: 65px;
    width: 65px;
    background: #4070f4;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 50%;
  }
  .container h4 {
    font-size: 1.25rem;
    color: #333;
    font-weight: 500;
  }
  .input-field {
    flex-direction: row;
    column-gap: 10px;
  }
  .input-field input {
    height: 45px;
    width: 42px;
    border-radius: 6px;
    outline: none;
    font-size: 1.125rem;
    text-align: center;
    border: 1px solid #ddd;
  }
  .input-field input:focus {
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
  }
  .input-field input::-webkit-inner-spin-button,
  .input-field input::-webkit-outer-spin-button {
    display: none;
  }
  .container button {
    margin-top: 15px;
    height: 45px;
    width: 235px;
    color: #fff;
    font-size: 1rem;
    border: none;
    padding: 9px 0;
    cursor: pointer;
    border-radius: 6px;
    background: #6e93f7;
    transition: all 0.2s ease;
  }
  .container  button.active {
    background: #4070f4;
    pointer-events: auto;
  }
  .container  button:hover {
    background: #0e4bf1;
  }
 
