/* Popup background */
.popup-bg {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* Popup form box */
.popup-box {
    width: 520px;
    background: #083e83;
    padding: 30px;
    border-radius: 8px;
    color: white;
    font-family: Arial, sans-serif;
    position: relative;
}

/* Close button */
.close-btn {
    position: absolute;
    right: 14px;
    top: 8px;
    font-size: 26px;
    cursor: pointer;
}

/* Inputs */
.popup-box input,
.popup-box textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background: transparent;
    border: 2px solid white;
    border-radius: 6px;
    color: #fff;
    font-size: 14px;
}
.popup-box select {
    background:  #23498d;   /* background of dropdown list */
   width: 100%;
    padding: 12px;
    margin-bottom: 12px;
   
    border: 2px solid white;
    border-radius: 6px;
    
    font-size: 14px;
  color: #fff;           /* text color */
}

textarea {
    height: 110px;
}

.submit-btn {
    background: #ff780a;
    color: #fff;
    padding: 12px 25px;
    border: none;
    font-size: 16px;
    font-weight: bold;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: auto;
}

