body {
  margin: 0;
  font-family: Arial, sans-serif;
      background: #0A476D;

}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.form-container {
    background: white;
    border-radius: 10px;
    padding: 20px;
    width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        }


.no-space-gape input {
    width: auto;
}

.no-space-gape {
    display: flex;
    justify-content: space-between;
}

     .form-container h2 {
        font-size: 22px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .form-container p {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    .form-group {
        display: flex;
        gap: 10px;
        margin-bottom: 15px;
    }

    .form-group.full-width {
        flex-direction: column;
    }

    input, textarea, select {
        width: 100%;
        padding: 10px;
        border-radius: 8px;
        border: 1px solid #ccc;
        font-size: 14px;
    }

    textarea {
        min-height: 80px;
        resize: vertical;
    }

    .checkbox-group {
        display: flex;
        justify-content: space-between;
        margin-bottom: 15px;
    }

    .checkbox-column {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .file-upload {
        border: 2px dashed #ccc;
        border-radius: 8px;
        text-align: center;
        padding: 20px;
        font-size: 14px;
        color: #666;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .file-upload img {
        width: 30px;
        margin-bottom: 8px;
    }

    button {
        width: 100%;
        padding: 14px;
        background-color: #083d56;
        color: white;
        border: none;
        border-radius: 25px;
        font-size: 16px;
        cursor: pointer;
        font-weight: bold;
    }

    button:hover {
        background-color: #062d42;
    }


    .form-section {
            margin-bottom: 20px;
        }
        .form-section h3 {
            font-size: 16px;
            color: #333;
            margin-bottom: 10px;
            font-weight: bold;
        }
        .checkbox-group {
            display: flex;
            flex-direction: column;
        }
        .checkbox-item {
            display: flex;
            align-items: center;
            margin-bottom: 8px;
        }
        .checkbox-item input {
            margin-right: 10px;
        }
        .checkbox-item label {
            font-size: 14px;
            color: #666;
        }
        .upload-section {
            text-align: center;
            border: 2px dashed #ccc;
            padding: 20px;
            border-radius: 5px;
            background-color: #f9f9f9;
        }
        .upload-section h3 {
            font-size: 14px;
            color: #999;
            margin-bottom: 10px;
        }
        .upload-section p {
            font-size: 12px;
            color: #666;
            margin: 0;
        }
        .upload-area {
            min-height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
        }
        .upload-icon {
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23ccc"><path d="M19 12h-2v5H7v-5H5v5a2 2 0 002 2h10a2 2 0 002-2v-5zm-7-2l-5-5-1.41 1.41L10.59 11H6v2h8V9h-4.59l-3.29-3.29L12 2l5 5V7h2v3h-2V9l-3-3-3 3z"/></svg>') no-repeat center;
            width: 24px;
            height: 24px;
            display: inline-block;
        }
        
 /* success message popup */       
        #popupOk {
    background: #00715C;
    border: 0;
    padding: 10px 30px;
    color: #fff;
}