.pop-up-form {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
}
label{
    margin-top:20px;
    font-size: 14px;
    margin-top: 2px;
    color: black !important;
}
        select{
width: 100%;
padding: 10px;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
margin-top: 6px;
margin-bottom: 16px;
resize: vertical;
}
::placeholder {
    color: rgb(133, 140, 155) !important;
    opacity: 1; /* Firefox */
  }
  

.form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    max-width: 400px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    box-sizing: border-box;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.form-container.active {
    transform: translate(-50%, -50%) scale(1);
}

.form-container h2 {
    margin: 0 0 15px;
    text-align: center;
}

.form-container input,
.form-container textarea,
.form-container button,
.dropdown-toggle{
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #b1b8ee !important;
    border-radius: 5px;
    box-sizing: border-box;
}
.dropdown-toggle{

    background-color:#ffffff !important;
}
.form-container textarea {
    resize: none;
    height: 100px;
}

.form-container button {
    background: #007BFF;
    color: #fff;
    border: none !important;
    cursor: pointer;
    transition: background 0.3s ease;
}

.form-container button:hover {
    background: #0056b3;
}
.btn-cld{
        width: 10% !important;
        background-color: #2F3A91!important;
        padding: 10px;
        margin: 10px 0;
        border: 1px solid #ddd;
        border-radius: 5px;
        box-sizing: border-box;
}

/**/

.dropdown {
      position: relative;
      width: 300px;
    }
    .dropdown-toggle {
      width: 100%;
      padding: 6px;
      font-size: 16px;
      cursor: pointer;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #f9f9f9;
      text-align: left;
    }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      width: 100%;
      border: 1px solid #ccc;
      border-radius: 5px;
      background-color: #fff;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      z-index: 1000;
    }
    .dropdown-menu.active {
      display: block;
    }
    .dropdown-item {
      padding: 10px;
      display: flex;
      align-items: center;
      cursor: pointer;
    }
    .dropdown-item input[type="checkbox"] {
      margin-right: 10px;
      width: 18px;
      height: 18px;
    }
    .dropdown-item:hover {
      background-color: #f1f1f1;
    }


/**/







.close-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #ff4d4d;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    z-index: 1001;
}

.close-icon:hover {
    background: #cc0000;
}

.overlay {
    position: fixed;
    top: 10;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(0, 0, 0, 0.5); */
    z-index: 999;
    display: none;
}

.overlay.active {
    display: block;
}